blob: 43da1166414d2e873ca20e26e20a2bf71024c885 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
# Maintainer: Lukas K. <lukas@carrotIndustries.net>
pkgname=bitstream
pkgver=1.5
pkgrel=1
pkgdesc="biTStream is a set of C headers allowing a simpler access to binary structures such as specified by MPEG, DVB, IETF, SMPTE, IEEE, SCTE, etc."
arch=('any')
url="http://www.videolan.org/developers/bitstream.html"
license=('MIT')
#depends=('libusb' 'readline' 'libusb-compat')
source=(https://get.videolan.org/bitstream/$pkgver/$pkgname-$pkgver.tar.bz2)
md5sums=('34630d13332fd1575bcc8531b0a596be')
package() {
cd $srcdir/${pkgname}-${pkgver}
make PREFIX=$pkgdir/usr install
}
|