diff options
author | Patrick J Volkerding <volkerdi@slackware.com> | 2019-10-18 00:58:04 +0000 |
---|---|---|
committer | Eric Hameleers <alien@slackware.com> | 2019-10-18 08:59:47 +0200 |
commit | c21461635f79d78b704f0f0228088ecac30cc267 (patch) | |
tree | e138c9d8adc83011a4fdcfa1fd65727a506101f9 /source/l | |
parent | 5203d348c3c0ba690136f043ce0139f984d65b09 (diff) | |
download | current-c21461635f79d78b704f0f0228088ecac30cc267.tar.gz |
Fri Oct 18 00:58:04 UTC 201920191018005804
a/kernel-generic-4.19.80-x86_64-1.txz: Upgraded.
a/kernel-huge-4.19.80-x86_64-1.txz: Upgraded.
a/kernel-modules-4.19.80-x86_64-1.txz: Upgraded.
d/kernel-headers-4.19.80-x86-1.txz: Upgraded.
k/kernel-source-4.19.80-noarch-1.txz: Upgraded.
isolinux/initrd.img: Rebuilt.
kernels/*: Upgraded.
usb-and-pxe-installers/usbboot.img: Rebuilt.
Diffstat (limited to 'source/l')
-rwxr-xr-x | source/l/orc/orc.SlackBuild | 38 | ||||
-rw-r--r-- | source/l/orc/slack-desc | 2 |
2 files changed, 22 insertions, 18 deletions
diff --git a/source/l/orc/orc.SlackBuild b/source/l/orc/orc.SlackBuild index d8ca2720..fa590551 100755 --- a/source/l/orc/orc.SlackBuild +++ b/source/l/orc/orc.SlackBuild @@ -93,26 +93,30 @@ find . \ \( -perm 666 -o -perm 664 -o -perm 600 -o -perm 444 -o -perm 440 -o -perm 400 \) \ -exec chmod 644 {} \+ -# Configure: -CFLAGS="$SLKCFLAGS" \ -CXXFLAGS="$SLKCFLAGS" \ -LDFLAGS="$SLKLDFLAGS" \ -./configure \ +# Configure, build, and install: +export CFLAGS="$SLKCFLAGS" +export CXXFLAGS="$SLKCFLAGS" +mkdir meson-build +cd meson-build +meson setup \ --prefix=/usr \ - --libdir=/usr/lib${LIBDIRSUFFIX} \ + --libdir=lib${LIBDIRSUFFIX} \ + --libexecdir=/usr/libexec \ + --bindir=/usr/bin \ + --sbindir=/usr/sbin \ + --includedir=/usr/include \ + --datadir=/usr/share \ + --mandir=/usr/man \ --sysconfdir=/etc \ --localstatedir=/var \ - --mandir=/usr/man \ - --docdir=/usr/doc/$PKGNAM-$VERSION \ - --disable-static \ - --build=$TARGET || exit 1 - -# Build and install: -make || exit 1 -make install DESTDIR=$PKG || exit 1 - -# Don't ship .la files: -rm -f $PKG/{,usr/}lib${LIBDIRSUFFIX}/*.la + --buildtype=release \ + .. || exit 1 + "${NINJA:=ninja}" $NUMJOBS || exit 1 + DESTDIR=$PKG $NINJA install || exit 1 +cd .. + +# No static libraries: +rm -f $PKG/{,usr/}lib${LIBDIRSUFFIX}/*.a # Strip binaries: find $PKG -print0 | xargs -0 file | grep -e "executable" -e "shared object" | \ diff --git a/source/l/orc/slack-desc b/source/l/orc/slack-desc index a9ee320f..2f9dc07f 100644 --- a/source/l/orc/slack-desc +++ b/source/l/orc/slack-desc @@ -14,6 +14,6 @@ orc: a generic assembly language that represents many of the features orc: available in SIMD architectures, including saturated addition and orc: subtraction, and many arithmetic operations. orc: -orc: orc: Homepage: https://gstreamer.freedesktop.org/src/orc/ orc: +orc: |