From a4352c6e476351bea1094f5a4ab71675733f5abe Mon Sep 17 00:00:00 2001 From: Jaroslav Lichtblau Date: Fri, 28 Nov 2014 20:17:14 +0100 Subject: [PATCH] Initial PKGBUILD status as of 28.11.2014 --- .SRCINFO | 16 ++++++++++++++++ PKGBUILD | 19 +++++++++++++++++++ 2 files changed, 35 insertions(+) create mode 100644 .SRCINFO create mode 100644 PKGBUILD diff --git a/.SRCINFO b/.SRCINFO new file mode 100644 index 000000000000..8f7f977c25a7 --- /dev/null +++ b/.SRCINFO @@ -0,0 +1,16 @@ +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 + url = https://www.cgabriel.org/software/wiki/Cappuccino + arch = i686 + arch = x86_64 + license = GPL + depends = polygen + depends = pygtk + depends = python + source = http://www.sourcefiles.org/Toys/Miscellaenous/cappuccino-0.5.1.tar.gz + md5sums = e99094e278c2facc9d0f5f58086cd932 + +pkgname = cappuccino + diff --git a/PKGBUILD b/PKGBUILD new file mode 100644 index 000000000000..36f0729999ea --- /dev/null +++ b/PKGBUILD @@ -0,0 +1,19 @@ +# Maintainer: Jaroslav Lichtblau + +pkgname=cappuccino +pkgver=0.5.1 +pkgrel=2 +pkgdesc="Run this software on your computer when you are not motivated to work, and enjoy doing something different" +arch=('i686' 'x86_64') +url="https://www.cgabriel.org/software/wiki/Cappuccino" +license=('GPL') +depends=('polygen' 'pygtk' 'python') +source=(http://www.sourcefiles.org/Toys/Miscellaenous/$pkgname-$pkgver.tar.gz) +md5sums=('e99094e278c2facc9d0f5f58086cd932') + +build() { + 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 +}