diff misc/iso-codes/iso-codes.sh @ 1222:325631424c65

misc: bring back build function
author David Demelier <markand@malikania.fr>
date Wed, 27 Oct 2021 11:32:16 +0200
parents a47aaf9743a0
children 9867e578b1a9
line wrap: on
line diff
--- a/misc/iso-codes/iso-codes.sh	Fri Oct 15 16:07:30 2021 +0200
+++ b/misc/iso-codes/iso-codes.sh	Wed Oct 27 11:32:16 2021 +0200
@@ -23,13 +23,16 @@
 PKGDOWNLOAD="https://salsa.debian.org/iso-codes-team/$PKGNAME/uploads/049ce6aac94d842be809f4063950646c/$PKGNAME-$PKGVERSION.tar.xz"
 PKGDEPENDS="gettext"
 
-rm -rf $PKGNAME-$PKGVERSION
-tar xvf $PKGNAME-$PKGVERSION.tar.xz
-cd $PKGNAME-$PKGVERSION
+build()
+{
+	rm -rf $PKGNAME-$PKGVERSION
+	tar xvf $PKGNAME-$PKGVERSION.tar.xz
+	cd $PKGNAME-$PKGVERSION
 
-./configure --prefix=/usr
-make
-make install pkgconfigdir=/lib/pkgconfig DESTDIR=$DESTDIR
+	./configure --prefix=
+	make
+	make install pkgconfigdir=/lib/pkgconfig DESTDIR=$DESTDIR
 
-cd ..
-rm -rf $PKGNAME-$PKGVERSION
+	cd ..
+	rm -rf $PKGNAME-$PKGVERSION
+}