mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2026-04-18 04:02:30 +02:00
34 lines
882 B
Plaintext
34 lines
882 B
Plaintext
# Contributor: Ed Robinson <ed@reevoo.com>
|
|
# Maintainer: Ed Robinson <ed@reevoo.com>
|
|
pkgname=libspiro
|
|
pkgver=20190731
|
|
pkgrel=0
|
|
pkgdesc="Spiro is the creation of Raph Levien. It simplifies the drawing of beautiful curves."
|
|
url="https://github.com/fontforge/libspiro"
|
|
arch="all"
|
|
license="GPL-3.0-or-later"
|
|
subpackages="$pkgname-dev"
|
|
source="https://github.com/fontforge/libspiro/releases/download/$pkgver/libspiro-$pkgver.tar.gz"
|
|
|
|
build() {
|
|
./configure \
|
|
--build=$CBUILD \
|
|
--host=$CHOST \
|
|
--prefix=/usr \
|
|
--sysconfdir=/etc \
|
|
--mandir=/usr/share/man \
|
|
--infodir=/usr/share/info \
|
|
--localstatedir=/var \
|
|
--disable-static
|
|
make
|
|
}
|
|
|
|
check() {
|
|
make check
|
|
}
|
|
|
|
package() {
|
|
make DESTDIR="$pkgdir" install
|
|
}
|
|
sha512sums="3b53e2ecf06090f2c47483bc87941d98deb63c5b6f25a49d2983b987f40032dd5936974bb4df1686595d97f0b3e3f6cd9d008f3c05c39f9686b1d5ffb444ec49 libspiro-20190731.tar.gz"
|