blob: 9c73d73e1b6832c2d2a494590391260695224fba (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
# Contributor: farid abdelnour <farid at atelier-labs.org>
pkgname=frameworks
pkgver=0.3.7
pkgrel=4
pkgdesc="Stop-motion animation frame capture software primarily for Linux."
arch=('i686' 'x86_64')
url="http://frameworks.polycrystal.org/"
depends=('gtk' 'glib2' 'libglade')
license=('GPL2')
source=(http://frameworks.polycrystal.org/release/$pkgname-$pkgver.tar.gz)
md5sums=('019c3d9172158e69c718759f23b51ee6')
build() {
cd ${pkgname}-${pkgver}
export CFLAGS+=" -fcommon"
./configure --prefix=/usr
make LDFLAGS=-lm
}
package() {
cd ${pkgname}-${pkgver}
make DESTDIR="$pkgdir" install
}
|