Initial PKGBUILD status as of 28.11.2014

This commit is contained in:
Jaroslav Lichtblau 2014-11-28 20:17:14 +01:00
commit 879cf382c7
3 changed files with 44 additions and 0 deletions

12
.AURINFO Normal file
View file

@ -0,0 +1,12 @@
pkgbase = ck4up
pkgdesc = Command-line utility to monitor web pages for updates
pkgver = 1.3
pkgrel = 1
url = http://jue.li/crux/ck4up/
arch = any
license = GPL
depends = ruby
source = http://jue.li/crux/ck4up/ck4up-1.3.tar.gz
pkgname = ck4up

13
.SRCINFO Normal file
View file

@ -0,0 +1,13 @@
pkgbase = ck4up
pkgdesc = Command-line utility to monitor web pages for updates
pkgver = 1.3
pkgrel = 1
url = http://jue.li/crux/ck4up/
arch = any
license = GPL
depends = ruby
source = http://jue.li/crux/ck4up/ck4up-1.3.tar.gz
md5sums = c3a3e36dc7a32b23a56390db00c963ac
pkgname = ck4up

19
PKGBUILD Normal file
View file

@ -0,0 +1,19 @@
# Maintainer: Jaroslav Lichtblau <dragonlord@aur.archlinux.org>
# Contributor: Bartlomiej Palmowski (Rotwang), maks1k at wp dot pl
pkgname=ck4up
pkgver=1.3
pkgrel=1
pkgdesc="Command-line utility to monitor web pages for updates"
arch=('any')
url="http://jue.li/crux/ck4up/"
license=('GPL')
depends=('ruby')
source=(http://jue.li/crux/$pkgname/$pkgname-$pkgver.tar.gz)
md5sums=('c3a3e36dc7a32b23a56390db00c963ac')
package() {
cd $pkgname-$pkgver
make DESTDIR="${pkgdir}" MANDIR=/usr/share/man/man1 install
}