Merge branch 'master' of gitorious.org:chakra-packages/apps

This commit is contained in:
george 2012-08-20 00:22:58 +00:00
commit af3098b181
2 changed files with 13 additions and 13 deletions

View File

@ -4,8 +4,8 @@
# Maintainer: Adrián Chaves Fernández (Gallaecio) <adriyetichaves@gmail.com>
pkgname=flacon
pkgver=0.7.1
pkgrel=2
pkgver=0.7.2
pkgrel=1
pkgdesc="Tool to extract individual tracks from one big audio file."
arch=('i686' 'x86_64')
url="http://code.google.com/p/flacon/"
@ -21,7 +21,7 @@ optdepends=('flac: for encoding and decoding FLAC files'
'wavpack: for WavPack support')
categories=('multimedia')
source=(http://$pkgname.googlecode.com/files/$pkgname-$pkgver.tgz)
md5sums=('a9427b0252e7ced6f82a1cec33794fc0')
md5sums=('58d138d0e5f432f9e852f5ff38962c35')
package() {
cd $srcdir/$pkgname-$pkgver

View File

@ -4,11 +4,8 @@
# maintainer (i686): Phil Miller <philm[at]chakra-project[dog]org>
# maintainer (x86_64): Manuel Tortosa <manutortosa[at]chakra-project[dot]org>
# include global config
source ../_buildscripts/${current_repo}-${_arch}-cfg.conf
pkgname=scons
pkgver=2.1.0
pkgver=2.2.0
pkgrel=1
pkgdesc="Extensible Python-based build utility"
arch=('any')
@ -16,18 +13,21 @@ url="http://scons.org"
license=('MIT')
depends=('python2')
categories=('programming')
source=(http://downloads.sourceforge.net/sourceforge/$pkgname/$pkgname-$pkgver.tar.gz)
md5sums=('47daf989e303a045b76c11236df719df')
source=("http://downloads.sourceforge.net/sourceforge/${pkgname}/${pkgname}-${pkgver}.tar.gz")
md5sums=('f737f474a02d08156c821bd2d4d4b632')
build() {
cd "$srcdir/$pkgname-$pkgver"
package() {
cd "${srcdir}/${pkgname}-${pkgver}"
python2 setup.py install --standard-lib \
--prefix=/usr \
--install-data=/usr/share \
--optimize=1 \
--root="$pkgdir"
--root="${pkgdir}" \
|| return 1
install -D -m644 LICENSE.txt "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
install -D -m644 LICENSE.txt \
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
}
# vim:set ts=2 sw=2 et: