mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-12-08 23:03:46 +00:00
19 lines
548 B
Bash
19 lines
548 B
Bash
# $Id: PKGBUILD 82 2009-07-17 19:56:55Z aaron $
|
|
# Contributor: Peter Baldwin <bald_pete@hotmail.com>
|
|
pkgname=mpgtx
|
|
pkgver=1.3.1
|
|
pkgrel=1
|
|
pkgdesc="A command line MPEG audio/video/system toolkit"
|
|
arch=('i686' 'x86_64')
|
|
url="http://mpgtx.sourceforge.net"
|
|
license=("GPL")
|
|
depends=()
|
|
source=(http://downloads.sourceforge.net/sourceforge/$pkgname/$pkgname-$pkgver.tar.gz)
|
|
md5sums=('d628060aa04ad3b40a175bf35f5167cf')
|
|
|
|
build() {
|
|
cd $startdir/src/$pkgname-$pkgver
|
|
./configure --prefix=/usr
|
|
make || return 1
|
|
make PREFIX=$startdir/pkg/usr install
|
|
}
|