added coverlovin

This commit is contained in:
Florian Dejonckheere 2013-05-24 12:39:20 +02:00
parent 25c5215278
commit f9cfc468cd
3 changed files with 20 additions and 10 deletions

View file

@ -3,6 +3,7 @@ pkgbase = recuerde
pkgver = 0.2.0_rc4
pkgrel = 2
url = http://code.google.com/p/recuerde
changelog = ChangeLog
arch = i686
arch = x86_64
license = GPL

4
ChangeLog Normal file
View file

@ -0,0 +1,4 @@
2013-05-07 Florian Dejonckheere <florian@floriandejonckheere.be>
* recuerde-0.2.0-rc4:
PKGBUILD compliance with pacman 4.1 specification

View file

@ -3,21 +3,26 @@
pkgname=recuerde
pkgver=0.2.0_rc4
_realver=0.2.0-rc4
_pkgver=0.2.0-rc4
pkgrel=2
pkgdesc="A simple and intuitive todo list."
arch=('i686' 'x86_64')
url="http://code.google.com/p/recuerde"
license=('GPL')
depends=('python' 'wxpython' 'pygtk' 'sqlite3')
source=(http://recuerde.googlecode.com/files/$pkgname-$_realver.tar.bz2)
md5sums=(61c8974e09d9b7a92ff758f8a8d61f9b)
changelog=ChangeLog
source=("http://recuerde.googlecode.com/files/${pkgname}-${_pkgver}.tar.bz2")
md5sums=('61c8974e09d9b7a92ff758f8a8d61f9b')
build() {
cd $startdir/src/$pkgname-$_realver
sed 's|/usr/|../../pkg/usr/|' -i install
sed 's|ln -s|#ln -s|' -i install
./install
echo -e "#!/bin/bash\n\ncd /usr/lib/$pkgname/\npython2 ./main.pyw" >$pkgdir/usr/bin/$pkgname
chmod 755 $pkgdir/usr/bin/$pkgname
prepare(){
cd "${srcdir}/${pkgname}-${_pkgver}"
sed 's|/usr/|../../pkg/usr/|' -i install
sed 's|ln -s|#ln -s|' -i install
}
package(){
cd "${srcdir}/${pkgname}-${_pkgver}"
./install
echo -e "#!/bin/bash\n\ncd /usr/lib/${pkgname}/\npython2 ./main.pyw" > ${pkgdir}/usr/bin/${pkgname}
chmod 755 ${pkgdir}/usr/bin/${pkgname}
}