mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-12-26 20:02:30 +01:00
31 lines
669 B
Plaintext
31 lines
669 B
Plaintext
# Maintainer: Natanael Copa <ncopa@alpinelinux.org>
|
|
pkgname=libfetch
|
|
pkgver=2.33
|
|
pkgrel=0
|
|
pkgdesc="URL based download library"
|
|
url="http://cvsweb.netbsd.org/bsdweb.cgi/pkgsrc/net/libfetch/"
|
|
arch="all"
|
|
license="BSD"
|
|
depends=
|
|
makedepends="openssl-dev"
|
|
subpackages="$pkgname-dev $pkgname-doc"
|
|
source="Makefile
|
|
ftp://ftp.archlinux.org/other/$pkgname/$pkgname-$pkgver.tar.gz"
|
|
|
|
_builddir="$srcdir"/$pkgname-$pkgver
|
|
prepare() {
|
|
cp "$srcdir"/Makefile "$_builddir"
|
|
}
|
|
|
|
build () {
|
|
cd "$_builddir"
|
|
make
|
|
}
|
|
|
|
package() {
|
|
cd "$_builddir"
|
|
make DESTDIR=$pkgdir install
|
|
}
|
|
md5sums="cf18907a75c67f543b1173d7f87830af Makefile
|
|
a176b94f7f30344ef8a71c047ca2136b libfetch-2.33.tar.gz"
|