Initial PKGBUILD status as of 28.11.2014

This commit is contained in:
Jaroslav Lichtblau 2014-11-28 20:17:14 +01:00
commit 7012c5fb01
2 changed files with 49 additions and 0 deletions

15
.SRCINFO Normal file
View file

@ -0,0 +1,15 @@
pkgbase = adesklet-aurnotify
pkgdesc = Displays the latest updated packages from Arch Linux User Repository
pkgver = 0.0.6
pkgrel = 2
url = http://adesklets.sourceforge.net/desklets.html
arch = any
groups = adesklet-desklets
license = GPL
depends = adesklets
backup = usr/share/adesklets/aurnotify/config.txt
source = http://downloads.sourceforge.net/adesklets/aurnotify-0.0.6.tar.bz2
md5sums = 5935d94159c7b0d670e843598732206d
pkgname = adesklet-aurnotify

34
PKGBUILD Normal file
View file

@ -0,0 +1,34 @@
# Maintainer: Jaroslav Lichtblau <dragonlord@aur.archlinux.org>
# Contributor: Andrea Scarpino <andrea@archlinux.org>
pkgname=adesklet-aurnotify
pkgver=0.0.6
pkgrel=2
pkgdesc="Displays the latest updated packages from Arch Linux User Repository"
arch=('any')
url="http://adesklets.sourceforge.net/desklets.html"
license=('GPL')
depends=('adesklets')
groups=('adesklet-desklets')
backup=('usr/share/adesklets/aurnotify/config.txt')
source=(http://downloads.sourceforge.net/adesklets/aurnotify-$pkgver.tar.bz2)
md5sums=('5935d94159c7b0d670e843598732206d')
package() {
cd ${srcdir}/aurnotify-$pkgver
#Python2 fix
sed -i 's_python_python2_' aurnotify.py
install -d ${pkgdir}/usr/share/adesklets/aurnotify/icons
install -m664 -g adesklets GNUmakefile README \
${pkgdir}/usr/share/adesklets/aurnotify/
install -D -m664 -g adesklets config.txt.sample \
${pkgdir}/usr/share/adesklets/aurnotify/config.txt
install -m664 -g adesklets icons/new.gif \
${pkgdir}/usr/share/adesklets/aurnotify/icons
install -D -m775 -g adesklets aurnotify.py \
${pkgdir}/usr/share/adesklets/aurnotify/aurnotify.py
}