wok view libmaxminddb/receipt @ rev 25768
created recipes for libmaxminddb and libmaxminddb-dev
author | Hans-G?nter Theisgen |
---|---|
date | Tue Sep 03 15:27:18 2024 +0100 (2 months ago) |
parents | |
children | fd9bbbef8991 |
line source
1 # SliTaz package receipt.
3 PACKAGE="libmaxminddb"
4 VERSION="1.11.0"
5 CATEGORY="libs"
6 TAGS="geoip"
7 SHORT_DESC="Maxmind GeoIP2 database library."
8 MAINTAINER="maintainer@slitaz.org"
9 LICENSE="Apache-2.0"
10 WEB_SITE="https://github.com/maxmind/libmaxminddb"
12 TARBALL="$PACKAGE-$VERSION.tar.gz"
13 WGET_URL="https://github.com/maxmind/$PACKAGE/releases/download/$VERSION/$TARBALL"
15 DEPENDS="curl"
16 BUILD_DEPENDS="curl-dev"
18 # Rules to configure and make the package.
19 compile_rules()
20 {
21 ./configure \
22 --prefix=/usr \
23 --with-pic \
24 $CONFIGURE_ARGS &&
25 make &&
26 make install
27 }
29 # Rules to gen a SliTaz package suitable for Tazpkg.
30 genpkg_rules()
31 {
32 cook_copy_folders bin
33 cook_copy_files *.so*
34 }