diff options
author | James Meyer <james.meyer@operamail.com> | 2010-10-23 18:17:40 (GMT) |
---|---|---|
committer | James Meyer <james.meyer@operamail.com> | 2010-10-23 18:19:39 (GMT) |
commit | adbcf19958300e9b6598990184c8815b945ba0ee (patch) | |
tree | f4283c850ac0ac202c17e78a637ee7ca8147621b /abs/core-testing/x264/PKGBUILD | |
parent | 61a68250df10d29b624650948484898334ff22d0 (diff) | |
download | linhes_pkgbuild-adbcf19958300e9b6598990184c8815b945ba0ee.zip linhes_pkgbuild-adbcf19958300e9b6598990184c8815b945ba0ee.tar.gz linhes_pkgbuild-adbcf19958300e9b6598990184c8815b945ba0ee.tar.bz2 |
Removed old core and extra from repo. Renamed -testing to core/extra. This will setup the base for the testing branch.
Diffstat (limited to 'abs/core-testing/x264/PKGBUILD')
-rw-r--r-- | abs/core-testing/x264/PKGBUILD | 35 |
1 files changed, 0 insertions, 35 deletions
diff --git a/abs/core-testing/x264/PKGBUILD b/abs/core-testing/x264/PKGBUILD deleted file mode 100644 index 4f1756b..0000000 --- a/abs/core-testing/x264/PKGBUILD +++ /dev/null @@ -1,35 +0,0 @@ -# $Id: PKGBUILD 36085 2009-04-19 22:58:09Z eric $ -# Contributor: damir <damir@archlinux.org> -# Maintainer: Paul Mattal <paul@archlinux.org> - -pkgname=x264 -pkgver=20090416 -pkgrel=1 -pkgdesc="free library for encoding H264/AVC video streams" -arch=(i686 x86_64) -url="http://www.videolan.org/developers/x264.html" -license=('GPL') -depends=('libx11') -makedepends=('yasm') -source=(ftp://ftp.videolan.org/pub/videolan/x264/snapshots/x264-snapshot-$pkgver-2245.tar.bz2) -md5sums=('f5730feaa6175539e8227e48e38b7d67') - -build() { - cd "$srcdir/$pkgname-snapshot-$pkgver-2245" || return 1 - - ./configure \ - --enable-pthread \ - --enable-visualize \ - --enable-shared \ - --enable-pic || return 1 - - make || return 1 - - make DESTDIR="$pkgdir" \ - bindir=/usr/bin \ - libdir=/usr/lib \ - includedir=/usr/include \ - install || return 1 -} - -# vim:set ts=2 sw=2 et: |