blob: 59f118c41cf230451ffe2752a5de02f4e49fe955 (
plain) (
tree)
|
|
# Contributor: Timo Teräs <timo.teras@iki.fi>
# Maintainer: Max Rees <maxcrees@me.com>
pkgname=ucpp
pkgver=1.3.5
pkgrel=0
pkgdesc="Embeddable, quick, light and C99 compliant C preprocessor"
url="https://gitlab.com/scarabeusiv/ucpp"
arch="all"
options="!check" # No test suite.
license="BSD-3-Clause and Public-Domain"
depends=""
makedepends=""
subpackages="$pkgname-doc"
source="https://gitlab.com/scarabeusiv/ucpp/uploads/79f08e39c676f15ed8a59335f6c9b924/ucpp-1.3.5.tar.xz"
build() {
./configure \
--build=$CBUILD \
--host=$CHOST \
--prefix=/usr
make
}
package() {
make DESTDIR="$pkgdir" install
}
sha512sums="3ded8f7bc2b238adb6e7f4162aee48e039dfe7cee31b700c38e8f147634d47cd1ceaf39c343549b0d4a58358e6b9743f7e84f87b253dc19c05e543d68ade24ce ucpp-1.3.5.tar.xz"
|