blob: 36ccebfb3db2a3538bf659a2e1ec8e7f802ba370 (
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.3.20150131
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 }
|