blob: 7f967432fdaa66b4667c2c4e02f8da62e3ab5148 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
#Maintainer: M. Mastroeni <the_maxtro@hotmail.it>
pkgname=gimp-gap
pkgver=2.6.0
pkgrel=2
pkgdesc="Gimp Animation Package, gimp's plugin for animation"
url="https://www.gimp.org/tutorials/Using_GAP/"
arch=('x86_64' 'i686')
license=('GPLv3')
depends=('gimp>=2.6.0' 'glib2')
optdepends=('libxvid: compression codec'
'libbz2: data compressor'
'faac: audio encoder'
'faad: audio decoder'
'libmp3lame: mpeg layer 3 codec'
'libx264: H264 codec')
source=("http://download.gimp.org/pub/gimp/plug-ins/v2.6/gap/${pkgname}-${pkgver}.tar.bz2")
md5sums=('249ed829de8b78675c0fe4ef4212089f')
build() {
cd "${srcdir}/${pkgname}-${pkgver}"
./configure CC="gcc" CXX="g++" LDFLAGS=-lm
cmake
make
}
package() {
cd "${srcdir}/${pkgname}-${pkgver}"
make DESTDIR="${pkgdir}" install
}
|