Added 'rsibreak' 0.11 from testing repositories.

This commit is contained in:
chaves 2011-01-15 01:07:34 +00:00
parent 87c6cc0183
commit af764c54a4
2 changed files with 47 additions and 0 deletions

12
rsibreak/ChangeLog Normal file
View File

@ -0,0 +1,12 @@
2010-09-15 Adrián Chaves Fernández (Gallaecio) <adriyetichaves gmail.com>
* 0.10-2 :
'docbook-xml' added as makedependency.
2010-09-13 Adrián Chaves Fernández (Gallaecio) <adriyetichaves gmail.com>
* 0.10-1 :
Imported from AUR.
Fixed.
Gentoo patch applied.
Added ChangeLog.

35
rsibreak/PKGBUILD Normal file
View File

@ -0,0 +1,35 @@
#
# Apps Packages for Chakra, part of chakra-project.org
#
# Maintainer: Adrián Chaves Fernández (Gallaecio) <adriyetichaves gmail.com>
# include global config
source ../_buildscripts/${current_repo}-${_arch}-cfg.conf
pkgname=rsibreak
pkgver=0.11
pkgrel=1
pkgdesc="A small utility to help prevent Repetive Strain Injury."
arch=('i686' 'x86_64')
url="http://www.rsibreak.org/"
license=('GPL2')
depends=('libxss' 'kdelibs' 'oxygen-icons')
makedepends=('automoc4' 'cmake' 'docbook-xsl')
# options=('libtool')
changelog=ChangeLog
source=("http://www.rsibreak.org/files/$pkgname-$pkgver.tar.bz2")
md5sums=('d5dd540efd18900aa508eee381bcaafd')
build() {
cd $srcdir/$pkgname-$pkgver
mkdir build && cd build
cmake -DCMAKE_INSTALL_PREFIX=/usr \
-DCMAKE_BUILD_TYPE=RelWithDebInfo \
..
make
}
package() {
cd $srcdir/$pkgname-$pkgver/build
make DESTDIR=$pkgdir install
}