gmpc-plugins PKGBUILD cleanup
This commit is contained in:
parent
1cad335106
commit
94d42ec437
3 changed files with 20 additions and 9 deletions
5
.SRCINFO
5
.SRCINFO
|
@ -1,8 +1,9 @@
|
||||||
pkgbase = gmpc-plugins
|
pkgbase = gmpc-plugins
|
||||||
pkgdesc = official plugins for GMPC
|
pkgdesc = official plugins for GMPC
|
||||||
pkgver = 0.20.0
|
pkgver = 0.20.0
|
||||||
pkgrel = 2
|
pkgrel = 3
|
||||||
url = http://gmpc.wikia.com/
|
url = http://gmpclient.org/
|
||||||
|
changelog = gmpc-plugins.changelog
|
||||||
arch = i686
|
arch = i686
|
||||||
arch = x86_64
|
arch = x86_64
|
||||||
license = GPL
|
license = GPL
|
||||||
|
|
19
PKGBUILD
19
PKGBUILD
|
@ -2,22 +2,27 @@
|
||||||
# Contributor: Dmitrij D. Czarkoff <czarkoff@gmail.com>
|
# Contributor: Dmitrij D. Czarkoff <czarkoff@gmail.com>
|
||||||
pkgname=gmpc-plugins
|
pkgname=gmpc-plugins
|
||||||
pkgver=0.20.0
|
pkgver=0.20.0
|
||||||
pkgrel=2
|
pkgrel=3
|
||||||
pkgdesc="official plugins for GMPC"
|
pkgdesc="official plugins for GMPC"
|
||||||
arch=(i686 x86_64)
|
arch=(i686 x86_64)
|
||||||
url="http://gmpc.wikia.com/"
|
url="http://gmpclient.org/"
|
||||||
license="GPL"
|
license="GPL"
|
||||||
depends=('libmpd>=0.19.0' 'gmpc>=0.19.0' 'lirc' 'xosd' 'libwebkit' 'libmicrohttpd' 'taglib')
|
depends=('libmpd>=0.19.0' 'gmpc>=0.19.0' 'lirc' 'xosd' 'libwebkit' 'libmicrohttpd' 'taglib')
|
||||||
makedepends=('gob2' 'intltool')
|
makedepends=('gob2' 'intltool')
|
||||||
source=(http://download.sarine.nl/Programs/gmpc/${pkgver}/${pkgname}-${pkgver}.tar.gz)
|
source=(http://download.sarine.nl/Programs/gmpc/${pkgver}/${pkgname}-${pkgver}.tar.gz)
|
||||||
md5sums=('e8c47c7cfeb8aab8995beef45d1c95ce')
|
md5sums=('e8c47c7cfeb8aab8995beef45d1c95ce')
|
||||||
options=(!libtool)
|
options=(!libtool)
|
||||||
|
changelog=$pkgname.changelog
|
||||||
|
|
||||||
build() {
|
build() {
|
||||||
cd ${startdir}/src
|
cd ${srcdir}/$pkgname-$pkgver
|
||||||
tar xzf ${pkgname}-${pkgver}.tar.gz
|
|
||||||
cd $startdir/src/$pkgname-$pkgver
|
|
||||||
./configure --prefix=/usr
|
./configure --prefix=/usr
|
||||||
make || return 1
|
make
|
||||||
make DESTDIR=$startdir/pkg install
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
package(){
|
||||||
|
cd ${srcdir}/$pkgname-$pkgver
|
||||||
|
make install DESTDIR=${pkgdir}
|
||||||
|
}
|
||||||
|
|
||||||
|
# vim:set ts=2 sw=2 et:
|
||||||
|
|
5
gmpc-plugins.changelog
Normal file
5
gmpc-plugins.changelog
Normal file
|
@ -0,0 +1,5 @@
|
||||||
|
2011-01-03 Cedric Girard <girard.cedric@gmail.com>
|
||||||
|
|
||||||
|
* 0.20.0-3 :
|
||||||
|
PKGBUILD cleanup.
|
||||||
|
Added ChangeLog.
|
Loading…
Reference in a new issue