mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2026-01-09 10:42:12 +01:00
32 lines
955 B
Plaintext
32 lines
955 B
Plaintext
# Contributor: ScrumpyJack <scrumpyjack@st.ilet.to>
|
|
# Maintainer: ScrumpyJack <scrumpyjack@st.ilet.to>
|
|
pkgname=lzip
|
|
pkgver=1.18
|
|
pkgrel=0
|
|
pkgdesc="Lzip is a lossless data compressor"
|
|
url="http://www.nongnu.org/lzip/lzip.html"
|
|
arch="all"
|
|
license="GPL2+"
|
|
depends=""
|
|
depends_dev=""
|
|
makedepends=""
|
|
install=""
|
|
subpackages="${pkgname}-doc"
|
|
source="http://download.savannah.gnu.org/releases/${pkgname}/${pkgname}-${pkgver}.tar.gz"
|
|
|
|
builddir=${srcdir}/${pkgname}-${pkgver}
|
|
build() {
|
|
cd "${builddir}"
|
|
./configure --prefix=/usr
|
|
make || return 1
|
|
}
|
|
|
|
package() {
|
|
cd "${builddir}"
|
|
make DESTDIR=${pkgdir} install || return 1
|
|
}
|
|
|
|
md5sums="3838567460ce4a10143de4bccc64fe1c lzip-1.18.tar.gz"
|
|
sha256sums="47f9882a104ab05532f467a7b8f4ddbb898fa2f1e8d9d468556d6c2d04db14dd lzip-1.18.tar.gz"
|
|
sha512sums="cf24756bd657ef48f48304be94bf5c6c18baf7dc4fce276e79c3abeab4c4f801e901ccfb12841fa4b2402e687aeb95f2e537695442f53c45f7cb9081c3062674 lzip-1.18.tar.gz"
|