Skip to content

Instantly share code, notes, and snippets.

Created December 12, 2013 21:18
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save anonymous/7935628 to your computer and use it in GitHub Desktop.
Save anonymous/7935628 to your computer and use it in GitHub Desktop.
pkgname=linphone-plugin-msx264
_pkgname=msx264
pkgver=1.4.3
pkgrel=1
pkgdesc="Linphone plugin that enables H.264 video codec"
url="http://www.linphone.org/"
arch=('i686' 'x86_64')
license=('GPL')
source=(http://download-mirror.savannah.gnu.org/releases/linphone/plugins/sources/$_pkgname-$pkgver.tar.gz)
depends=('linphone')
options=('!makeflags')
md5sums=('8e3dad81033631918bb1138548fd9797')
build() {
cd "$srcdir/$_pkgname-$pkgver"
autoreconf --force --install
./configure --prefix=/usr
make
}
package() {
cd "$srcdir/$_pkgname-$pkgver"
make PACKAGE_PLUGINS_DIR=\$\(libdir\)/liblinphone/plugins DESTDIR="$pkgdir" install
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment