cappuccino-0.5.1-3

This commit is contained in:
Jaroslav Lichtblau 2014-12-01 20:35:46 +01:00
parent a4352c6e47
commit fa07411a78
2 changed files with 10 additions and 11 deletions

View file

@ -1,14 +1,13 @@
pkgbase = cappuccino
pkgdesc = Run this software on your computer when you are not motivated to work, and enjoy doing something different
pkgver = 0.5.1
pkgrel = 2
pkgrel = 3
url = https://www.cgabriel.org/software/wiki/Cappuccino
arch = i686
arch = x86_64
arch = any
license = GPL
depends = polygen
depends = pygtk
depends = python
depends = python2
source = http://www.sourcefiles.org/Toys/Miscellaenous/cappuccino-0.5.1.tar.gz
md5sums = e99094e278c2facc9d0f5f58086cd932

View file

@ -2,18 +2,18 @@
pkgname=cappuccino
pkgver=0.5.1
pkgrel=2
pkgrel=3
pkgdesc="Run this software on your computer when you are not motivated to work, and enjoy doing something different"
arch=('i686' 'x86_64')
arch=('any')
url="https://www.cgabriel.org/software/wiki/Cappuccino"
license=('GPL')
depends=('polygen' 'pygtk' 'python')
depends=('polygen' 'pygtk' 'python2')
source=(http://www.sourcefiles.org/Toys/Miscellaenous/$pkgname-$pkgver.tar.gz)
md5sums=('e99094e278c2facc9d0f5f58086cd932')
build() {
cd ${srcdir}/$pkgname-$pkgver
package() {
cd "${srcdir}"/$pkgname-$pkgver
python setup.py install --root=${pkgdir} || return 1
install -D -m644 $pkgname.1 ${pkgdir}/usr/share/man/man1/$pkgname.1 || return 1
python2 setup.py install --root="${pkgdir}"
install -D -m644 $pkgname.1 "${pkgdir}"/usr/share/man/man1/$pkgname.1
}