Removed --sysconfdir option in a lot of build files in base Added preservestaticlibs option in base/argp-standalone Fixed CFLAGS variable in base/{file,grep} Fixed build options in base/gstreamer Fixed LDFLAGS variable in base/less Removed CFLAGS variable in base/libarchive Multiple build option fixes in base/nasm
31 lines
662 B
Text
Executable file
31 lines
662 B
Text
Executable file
app=gsl
|
|
version=2.6
|
|
build=1sml
|
|
homepage="https://www.gnu.org/software/gsl/gsl.html"
|
|
download="https://ftp.gnu.org/gnu/gsl/gsl-$version.tar.gz"
|
|
desc="Numerical library for C and C++ programmers written in ANSI C"
|
|
requires="musl"
|
|
|
|
build() {
|
|
mkandenterbuilddir
|
|
rm -rf $app-$version
|
|
|
|
tar xf $srcdir/$app-$version.tar.?z*
|
|
cd $app-$version
|
|
fixbuilddirpermissions
|
|
|
|
./configure \
|
|
--prefix="" \
|
|
--disable-static
|
|
|
|
make
|
|
make install DESTDIR=$pkg
|
|
|
|
cp COPYING $pkgdocs/
|
|
|
|
mkfinalpkg
|
|
}
|
|
|
|
sha512sums="
|
|
b2f8d661282eca13417aa863136ae81b551f1919741d35de339c20616332b45b1a94f1f87aec9c496c4704cc0f88c84c50adca047846cf97eb87fef4aedc704f gsl-2.6.tar.lz
|
|
"
|