diff options
Diffstat (limited to 'community/synfig/PKGBUILD')
-rw-r--r-- | community/synfig/PKGBUILD | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/community/synfig/PKGBUILD b/community/synfig/PKGBUILD new file mode 100644 index 000000000..ccf622c00 --- /dev/null +++ b/community/synfig/PKGBUILD @@ -0,0 +1,28 @@ +# $Id: PKGBUILD 36102 2010-12-27 10:40:57Z spupykin $ +# Maintainer: Sergej Pupykin <pupykin.s+arch@gmail.com> +# Contributor: Franco Iacomella <yaco@gnu.org> + +pkgname=synfig +pkgver=0.62.02 +pkgrel=1 +pkgdesc="Professional vector animation program (CLI renderer only)" +arch=(i686 x86_64) +url="http://synfig.org" +license=('GPL2') +depends=('libxml++' 'libsigc++2.0' 'etl' 'imagemagick' 'ffmpeg' 'fontconfig' 'libpng' 'libtiff' 'libdv' 'libmng') +optdepends=('openexr' 'libsigc++') +conflicts=('synfig-core') +replaces=('synfig-core') +options=(!libtool) +source=(http://downloads.sourceforge.net/sourceforge/$pkgname/$pkgname-$pkgver.tar.gz + build-fix.patch) +md5sums=('e6af1aa9426cf629127d23edbd772f6d' + '0e983a00807c6c76c380f4f9918e6724') + +build() { + cd $srcdir/$pkgname-$pkgver + [ $NOEXTRACT -eq 1 ] || patch -p1 <$srcdir/build-fix.patch + [ $NOEXTRACT -eq 1 ] || ./configure --prefix=/usr --sysconfdir=/etc --with-libavcodec --with-libdv + make + make DESTDIR=$pkgdir install +} |