You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
724 B
25 lines
724 B
import 'compile/configure'
|
|
|
|
name=giblib
|
|
majver=1.2.4
|
|
version=$majver-11
|
|
update_url="https://packages.debian.org/sid/${name}1"
|
|
update_names="${name}_$version.debian.tar.xz"
|
|
|
|
dlextract "http://http.debian.net/debian/pool/main/g/$name/${name}_$majver.orig.tar.gz" \
|
|
'598711e2cb631c59f6ad11cba4383f2c'
|
|
dlextract "http://http.debian.net/debian/pool/main/g/$name/${name}_$version.debian.tar.xz" \
|
|
'85d5fb2f8a78d23b3a7929f3f8828f44'
|
|
header_end
|
|
|
|
cd "$name-$majver.orig"
|
|
|
|
# Updating with debian patches as appropiate
|
|
for x in $(cat ../debian/patches/series); do
|
|
patch -p1 -i ../debian/patches/$x
|
|
done
|
|
|
|
autoreconf -i
|
|
compile_configure -- --disable-static
|
|
|
|
# vim:set tabstop=4 shiftwidth=4 syntax=sh expandtab:
|
|
|