diff options
Diffstat (limited to 'x11/libmpeg2/APKBUILD')
-rw-r--r-- | x11/libmpeg2/APKBUILD | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/x11/libmpeg2/APKBUILD b/x11/libmpeg2/APKBUILD index 8b44458e32..15704d0def 100644 --- a/x11/libmpeg2/APKBUILD +++ b/x11/libmpeg2/APKBUILD @@ -1,7 +1,7 @@ # Maintainer: Natanael Copa <ncopa@alpinelinux.org> pkgname=libmpeg2 pkgver=0.5.1 -pkgrel=0 +pkgrel=1 pkgdesc="libmpeg2 is a library for decoding MPEG-1 and MPEG-2 video streams." url="http://libmpeg2.sourceforge.net/" license="GPL2" @@ -10,8 +10,7 @@ depends= makedepends="libx11-dev libice-dev libsm-dev libxext-dev libxv-dev" source="http://$pkgname.sourceforge.net/files/$pkgname-$pkgver.tar.gz" -build () -{ +build() { cd "$srcdir"/$pkgname-$pkgver ./configure --prefix=/usr \ --enable-shared \ @@ -19,6 +18,10 @@ build () make OPT_CFLAGS="${CFLAGS}" \ MPEG2DEC_CFLAGS="${CFLAGS}" \ LIBMPEG2_CFLAGS="" || return 1 +} + +package() { + cd "$srcdir"/$pkgname-$pkgver make DESTDIR="$pkgdir" install || return 1 } |