blob: 4e8bfe261b9cf86a87cad3adeed2a419b9ad8a8c (
plain)
1 # Description: Simplifies the drawing of beautiful curves.
2 # URL: https://github.com/fontforge/libspiro
3 # Maintainer: Danny Rawlins, crux at romster dot me
4 # Packager: Danny Rawlins, crux at romster dot me
5
6 name=libspiro
7 version=0.5.20150702
8 release=1
9 source=(https://github.com/fontforge/libspiro/archive/$version.tar.gz)
10
11 build() {
12 cd $name-$version
13
14 autoreconf -i
15 automake --foreign -Wall
16
17 ./configure --prefix=/usr
18
19 make
20 make install DESTDIR=$PKG
21
22 install -m 0644 -D libspiro.pc $PKG/usr/lib/pkgconfig/libspiro.pc
23 }
|