Fixed documentation directory-related build options in several build files

Removed extraneous README file in extra/FEH
Discarded DEBUG=0 build flag in extra/cmus
This commit is contained in:
PktSurf 2023-03-30 20:30:49 +05:30
parent 32eaa8d266
commit 2818c6283f
50 changed files with 112 additions and 97 deletions

View file

@ -1,6 +1,6 @@
app=acl
version=2.2.53
build=1sml
build=2sml
homepage="http://savannah.nongnu.org/projects/acl"
download="https://download.savannah.nongnu.org/releases/acl/acl-$version.tar.gz"
requires="attr"
@ -17,14 +17,12 @@ prepbuilddir() {
build() {
./configure \
--prefix=""
--prefix="" \
--docdir="/share/doc/$app-$version"
make
make install DESTDIR=$pkg
mv $pkg/share/doc/$app/* $pkgdocs/
rm -rf $pkg/share/doc
mkfinalpkg
}

View file

@ -1,6 +1,6 @@
app=bash
version=5.0
build=1sml
build=2sml
homepage="https://www.gnu.org/software/bash/bash.html"
download="https://ftp.gnu.org/gnu/bash/bash-$version.tar.gz"
requires="netbsd-curses"
@ -23,6 +23,7 @@ build() {
./configure \
--prefix="" \
--bindir=/bin \
--docdir="/share/doc/$app-$version" \
--without-bash-malloc \
--disable-rpath \
--enable-history \

View file

@ -1,6 +1,6 @@
app=bison
version=3.1
build=1sml
build=2sml
homepage="https://www.gnu.org/software/bison/bison.html"
download="https://ftp.gnu.org/gnu/bison/bison-$version.tar.xz"
desc="parser generator similar to yacc"
@ -18,6 +18,7 @@ prepbuilddir() {
build() {
./configure \
--prefix="" \
--docdir="/share/doc/$app-$version" \
--disable-nls
make

View file

@ -1,6 +1,6 @@
app=cmake
version=3.17.3
build=1sml
build=2sml
homepage="http://www.cmake.org"
download="https://cmake.org/files/v$version/cmake-$version.tar.gz"
desc="Cross-platform, open-source make system"
@ -20,6 +20,7 @@ build() {
./bootstrap \
--prefix="" \
--docdir="/share/doc/$app-$version" \
--no-system-curl \
--no-system-expat \
--no-system-jsoncpp \
@ -32,7 +33,7 @@ build() {
make
make install DESTDIR=$pkg
cp Licenses/* Copyright.txt $pkgdocs/
cp Licenses/* Copyright.txt $pkgdocs/
mkfinalpkg
}

View file

@ -1,6 +1,6 @@
app=dosfstools
version=4.1
build=1sml
build=2sml
homepage="https://github.com/dosfstools/dosfstools"
download="https://github.com/dosfstools/dosfstools/releases/download/v$version/dosfstools-$version.tar.gz"
desc="Tools for working with FAT filesystems"
@ -20,6 +20,7 @@ build() {
./configure \
--prefix="" \
--sbindir=/bin \
--docdir="/share/doc/$app-$version" \
--enable-compat-symlinks
make

View file

@ -1,8 +1,8 @@
app=expat
version=2.5.0
build=2sml
homepage="https://downloads.sourceforge.net/project/expat/"
download="https://downloads.sourceforge.net/project/expat/expat/$version/expat-$version.tar.bz2"
build=1sml
desc="C library for parsing XML"
requires="musl"
@ -18,6 +18,7 @@ prepbuilddir() {
build() {
./configure \
--prefix="" \
--docdir="/share/doc/$app-$version" \
--disable-static
make

View file

@ -16,7 +16,6 @@ prepbuilddir() {
}
build() {
if [[ $arch == "aarch64" ]] ; then
sseopts="--disable-sse"
else
@ -25,6 +24,7 @@ build() {
./configure \
--prefix="" \
--docdir="/share/doc/$app-$version" \
$sseopts
make

View file

@ -1,6 +1,6 @@
app=flex
version=2.6.4
build=1sml
build=2sml
homepage="https://github.com/westes/flex"
download="https://github.com/westes/flex/archive/refs/tags/v$version.tar.gz"
desc="fast lexical analyzer generator"
@ -19,14 +19,13 @@ build() {
CPPFLAGS="$CFLAGS -DSTDC_HEADERS" \
./configure \
--prefix="" \
--docdir="/share/doc/$app-$version" \
--disable-nls \
--disable-static
make
make install DESTDIR=$pkg
cp COPYING $pkgdocs/
mkfinalpkg
}

View file

@ -1,6 +1,6 @@
app=gettext
version=0.21.1
build=1sml
build=2sml
homepage="https://www.gnu.org/software/gettext/"
download="https://ftp.gnu.org/pub/gnu/gettext/gettext-$version.tar.xz"
desc="Toolkit to internationalize messages given by shell scripts"
@ -18,6 +18,7 @@ prepbuilddir() {
build() {
./configure \
--prefix="" \
--docdir="/share/doc/$app-$version" \
--disable-static \
--disable-java

View file

@ -1,6 +1,6 @@
app=gnupg2
version=2.2.20
build=1sml
build=2sml
homepage="https://gnupg.org/"
download="https://gnupg.org/ftp/gcrypt/gnupg/gnupg-$version.tar.bz2"
desc="The GNU Privacy Guard version 2.x"
@ -18,7 +18,8 @@ prepbuilddir() {
build() {
./configure \
--prefix="" \
--sbindir=/bin
--sbindir=/bin \
--docdir="/share/doc/$app-$version"
make
make install DESTDIR=$pkg

View file

@ -1,6 +1,6 @@
app=highlight
version=4.0
build=1sml
build=2sml
homepage="http://www.andre-simon.de/doku/highlight/en/highlight.php"
download="http://www.andre-simon.de/zip/highlight-$version.tar.bz2"
desc="Universal syntax highlighter"
@ -17,7 +17,7 @@ prepbuilddir() {
build() {
make
make install PREFIX="/" DESTDIR=$pkg
make install PREFIX="/" doc_dir="/share/doc/$app-$version" DESTDIR=$pkg
cp COPYING $pkgdocs/

View file

@ -19,6 +19,7 @@ build() {
LIBS="-lcurses -lterminfo" \
./configure \
--prefix="" \
--docdir="/share/doc/$app-$version" \
--enable-shared \
--enable-nasm \
--disable-static

View file

@ -1,6 +1,6 @@
app=libatasmart
version=0.19
build=1sml
build=2sml
homepage="http://0pointer.de/blog/projects/being-smart.html"
download="https://0pointer.de/public/libatasmart-$version.tar.xz"
desc="ATA S.M.A.R.T reading and parsing library"
@ -19,6 +19,7 @@ build() {
./configure \
--prefix="" \
--sbindir=/bin \
--docdir="/share/doc/$app-$version" \
--disable-static \
$builddist

View file

@ -20,6 +20,7 @@ prepbuilddir() {
build() {
./configure \
--prefix="" \
--docdir="/share/doc/$app-$version" \
--disable-static \
$builddist

View file

@ -1,7 +1,7 @@
app=libexif
version=0.6.22
mversion="(echo $version | sed 's@_@.)"
build=1sml
build=2sml
homepage="https://libexif.github.io/"
download="https://github.com/libexif/libexif/releases/download/libexif-$mversion-release/libexif-$version.tar.xz"
desc="Exchangeable Image File Format library"
@ -19,13 +19,12 @@ prepbuilddir() {
build() {
./configure \
--prefix="" \
--docdir="/share/doc/$app-$version" \
--disable-static
make
make install DESTDIR=$pkg
cp COPYING $pkgdocs/
mkfinalpkg
}

View file

@ -1,6 +1,6 @@
app=libgc
version=8.0.4
build=1sml
build=2sml
homepage="https://www.hboehm.info/gc/"
download="https://www.hboehm.info/gc/gc_source/gc-$version.tar.gz"
desc="Conservative garbage collector for C and C++"
@ -18,6 +18,7 @@ prepbuilddir() {
build() {
./configure \
--prefix="" \
--docdir="/share/doc/$app-$version" \
--enable-cplusplus \
--enable-threads=pthreads \
--disable-static \

View file

@ -1,6 +1,6 @@
app=libjpeg-turbo
version=2.0.4
build=1sml
build=2sml
homepage="https://github.com/libjpeg-turbo/libjpeg-turbo"
desc="JPEG library on steroids"
requires="nasm"
@ -19,6 +19,7 @@ build() {
cmake .. \
-DCMAKE_INSTALL_PREFIX="" \
-DCMAKE_INSTALL_LIBDIR="/lib" \
-DCMAKE_INSTALL_DOCDIR="/share/doc/$app-$version" \
-DENABLE_STATIC=OFF
make

View file

@ -1,6 +1,6 @@
app=libkate
version=0.4.1
build=1sml
build=2sml
homepage="https://wiki.xiph.org/OggKate"
desc="Codec providing karaoke and text support in Ogg"
requires="libogg libpng python3"
@ -23,13 +23,12 @@ prepbuilddir() {
build() {
./configure \
--prefix="" \
--docdir="/share/doc/$app-$version" \
--disable-static
make
make install DESTDIR=$pkg
cp COPYING $pkgdocs/
mkfinalpkg
}

View file

@ -1,6 +1,6 @@
app=libogg
version=1.3.4
build=1sml
build=2sml
homepage="https://xiph.org/ogg/"
desc="Library for manipulating ogg bitstreams"
requires="musl"
@ -17,6 +17,7 @@ prepbuilddir() {
build() {
./configure \
--prefix="" \
--docdir="/share/doc/$app-$version" \
--disable-static
make

View file

@ -1,6 +1,6 @@
app=libunistring
version=0.9.10
build=1sml
build=2sml
homepage="http://www.gnu.org/s/libunistring"
download="https://ftp.gnu.org/gnu/libunistring/libunistring-$version.tar.gz"
desc="GNU Unicode string manipulating library"
@ -19,6 +19,7 @@ build() {
./configure \
--prefix="" \
--docdir="/share/doc/$app-$version" \
--disable-static \
--disable-rpath

View file

@ -1,6 +1,6 @@
app=lzo
version=2.10
build=1sml
build=2sml
homepage="http://www.oberhumer.com/opensource/lzo/"
download="http://www.oberhumer.com/opensource/lzo/download/lzo-$version.tar.gz"
desc="portable lossless data compression library written in ANSI C"
@ -18,14 +18,13 @@ prepbuilddir() {
build() {
./configure \
--prefix="" \
--docdir="/share/doc/$app-$version" \
--enable-shared=yes \
--enable-static=no
make
make install DESTDIR=$pkg
cp COPYING $pkgdocs/
mkfinalpkg
}

View file

@ -1,6 +1,6 @@
app=mpfr
version=3.1.6
build=1sml
build=2sml
homepage="https://www.mpfr.org/"
download="https://ftp.gnu.org/gnu/mpfr/mpfr-$version.tar.xz"
desc="Multiple-Precision Floating-Point Reliable Library"
@ -18,13 +18,12 @@ prepbuilddir() {
build() {
./configure \
--prefix="" \
--docdir="/share/doc/$app-$version" \
--disable-static
make
make install DESTDIR=$pkg
cp COPYING* $pkgdocs/
mkfinalpkg
}

View file

@ -1,6 +1,6 @@
app=nano
version=3.2
build=1sml
build=2sml
homepage="http://www.nano-editor.org"
download="https://www.nano-editor.org/dist/v3/nano-$version.tar.xz"
desc="Nano's ANOther editor, an enhanced free Pico clone"
@ -18,6 +18,7 @@ prepbuilddir() {
build() {
./configure \
--prefix="" \
--docdir="/share/doc/$app-$version" \
--disable-nls
make

View file

@ -1,6 +1,6 @@
app=openssl
version=1.1.1t
build=1sml
build=2sml
homepage="https://www.openssl.org/"
download="https://www.openssl.org/source/openssl-$version.tar.gz"
desc="Commercial-grade, full-featured crypto library from OpenSSL Project that implements TLS 1.x protocol"
@ -28,7 +28,7 @@ build() {
shared enable-md2 no-weak-ssl-ciphers
make
make install LIBDIR=lib DESTDIR=$pkg
make install LIBDIR=lib DOCDIR="/share/doc/$app-$version" DESTDIR=$pkg
cp LICENSE $pkgdocs/

View file

@ -1,6 +1,6 @@
app=opusfile
version=0.11
build=1sml
build=2sml
homepage="https://opus-codec.org/"
download="https://downloads.xiph.org/releases/opus/opusfile-$version.tar.gz"
desc="dependency for the opus audio library"
@ -18,13 +18,12 @@ prepbuilddir() {
build() {
./configure \
--prefix="" \
--docdir="/share/doc/$app-$version" \
--disable-static
make
make install DESTDIR=$pkg
cp COPYING $pkgdocs/
mkfinalpkg
}

View file

@ -1,6 +1,6 @@
app=readline
version=6.3
build=1sml
build=2sml
homepage="https://tiswww.case.edu/php/chet/readline/rltop.html"
download="ftp://ftp.cwru.edu/pub/bash/readline-$version.tar.gz"
desc="Line input library with editing features"
@ -22,6 +22,7 @@ prepbuilddir() {
build() {
./configure \
--prefix="" \
--docdir="/share/doc/$app-$version" \
--with-curses \
--enable-multibyte \
--disable-static
@ -29,8 +30,6 @@ build() {
make shared
make install DESTDIR=$pkg
cp COPYING $pkgdocs/
mkfinalpkg
}

View file

@ -1,6 +1,6 @@
app=signify
version=30
build=1sml
build=2sml
libbsdversion=0.10.0
homepage="https://github.com/aperezdc/signify"
download="https://github.com/aperezdc/signify/releases/download/v$version/signify-$version.tar.xz"
@ -39,6 +39,8 @@ build() {
CFLAGS="-I$LIBBSDPATH/include" LDFLAGS="-L$LIBBSDPATH/lib"
make install PREFIX="" DESTDIR=$pkg
cp COPYING $pkgdocs/
mkfinalpkg
}

View file

@ -1,6 +1,6 @@
app=speexdsp
version=1.2.0
build=1sml
build=2sml
homepage="http://www.speex.org/"
desc="Patent-free open-source DSP library"
requires="musl"
@ -17,13 +17,13 @@ prepbuilddir() {
build() {
./configure \
--prefix="" \
--sysconfdir=/etc \
--docdir="/share/doc/$app-$version" \
--disable-static
make
make install DESTDIR=$pkg
cp COPYING ChangeLog $pkgdocs/
cp COPYING $pkgdocs/
mkfinalpkg
}

View file

@ -1,6 +1,6 @@
app=sudo
version=1.9.12p2
build=1sml
build=2sml
homepage="https://www.sudo.ws/"
download="https://www.sudo.ws/dist/sudo-$version.tar.gz"
desc="give limited root privileges to certain users"
@ -21,6 +21,7 @@ build() {
--prefix="" \
--sysconfdir=/etc \
--sbindir=/bin \
--docdir="/share/doc/$app-$version" \
--with-env-editor \
--disable-pam-session \
--without-pam \

View file

@ -1,6 +1,6 @@
app=toluapp
version=1.0.93
build=1sml
build=2sml
homepage="https://github.com/LuaDist/toluapp"
download="https://github.com/LuaDist/toluapp/archive/refs/tags/$version.tar.gz"
desc="tool to integrate C/C++ code with Lua"
@ -19,11 +19,14 @@ build() {
mkdir -p smbuild && cd smbuild
cmake .. \
-DCMAKE_INSTALL_PREFIX="" \
-DCMAKE_BUILD_TYPE=Release
-DCMAKE_BUILD_TYPE=Release \
-DINSTALL_DOC="/share/doc/$app-$version"
make
make install DESTDIR=$pkg
rm -r $pkg/share/$app
cp ../README* $pkgdocs/
mkfinalpkg

View file

@ -1,6 +1,6 @@
app=twolame
version=0.4.0
build=1sml
build=2sml
homepage="https://www.twolame.org/"
download="https://downloads.sourceforge.net/twolame/twolame-$version.tar.gz"
desc="Optimised MP2 audio encoder"
@ -18,13 +18,12 @@ prepbuilddir() {
build() {
./configure \
--prefix="" \
--docdir="/share/doc/$app-$version" \
--disable-static
make
make install DESTDIR=$pkg
cp COPYING $pkgdocs/
mkfinalpkg
}

View file

@ -1,6 +1,6 @@
app=xz
version=5.2.5
build=1sml
build=2sml
homepage="https://tukaani.org/xz/"
download="https://tukaani.org/xz/xz-$version.tar.xz"
desc="Compression utility based on the LZMA algorithm"
@ -19,6 +19,7 @@ build() {
./configure \
--prefix="" \
--bindir=/bin \
--docdir="/share/doc/$app-$version" \
--disable-nls \
--enable-static \
--with-pic
@ -26,8 +27,6 @@ build() {
make
make install DESTDIR=$pkg
cp COPYING* $pkgdocs/
mkfinalpkg
}

View file

@ -1,6 +1,6 @@
app=cmus
version=2.8.0
build=1sml
build=2sml
homepage="https://cmus.github.io/"
download="https://github.com/cmus/cmus/archive/v$version.tar.gz"
desc="Fast text-mode music player"
@ -18,8 +18,7 @@ prepbuilddir() {
build() {
./configure \
prefix="" \
exampledir="/doc/$app-$version/examples" \
DEBUG=0
exampledir="/share/doc/$app-$version/examples"
make
make install DESTDIR=$pkg

View file

@ -1,6 +0,0 @@
feh is an image viewer at heart, though it does other cool stuff.
feh features include simple image viewing, multiple image viewing
(slideshow), multiple image viewing in multiwindows, image viewing
in fullscreen, image list mode, loadable/unloadable listing,
recursive file opening, saving/loading filelists, loading images
via http, reloading after delay, montage creation, and more.

View file

@ -16,9 +16,12 @@ prepbuilddir() {
}
build() {
CFLAGS+=" -include string.h" \
make PREFIX="/" exif=1 help=1
make install DESTDIR=$pkg PREFIX="/" man_dir=$pkg/share/man
CFLAGS+=" -include string.h" make PREFIX="/" exif=1 help=1
make install DESTDIR=$pkg \
PREFIX="/" \
man_dir=$pkg/share/man \
example_dir="$pkg/share/doc/$app-$version/examples" \
doc_dir="$pkg/share/doc/$app-$version"
cp COPYING $pkgdocs/

View file

@ -1,6 +1,6 @@
app=ffmpeg
version=4.3
build=2sml
build=3sml
homepage="https://ffmpeg.org/"
download="https://ffmpeg.org/releases/ffmpeg-$version.tar.xz"
desc="Software to record, convert and stream audio and video"
@ -17,11 +17,12 @@ prepbuilddir() {
build() {
./configure \
--prefix="" \
--prefix="/" \
--bindir=/bin \
--incdir=/include \
--libdir=/lib \
--docdir=/share \
--docdir="/share/doc/$app-$version" \
--datadir="/share/doc/$app-$version" \
--mandir=/share/man \
--enable-shared \
--disable-static \
@ -52,14 +53,11 @@ build() {
--enable-libopenjpeg \
--enable-libcdio
# For some reason ffmpeg's make does not pick up MAKEFLAGS from the env
make $MAKEFLAGS
make
make install DESTDIR=$pkg
cp LICENSE.md COPYING* $pkgdocs/
[[ -d $pkg/usr/local/share/$app ]] && rm -r $pkg/usr
mkfinalpkg
}

View file

@ -1,6 +1,6 @@
app=imagemagick
version=7.1.0
build=1sml
build=2sml
homepage="https://www.imagemagick.org/"
download=""
desc="Robust collection of image processing tools"
@ -18,6 +18,7 @@ prepbuilddir() {
build() {
./configure \
--prefix="" \
--docdir="/share/doc/$app-$version" \
--without-modules \
--with-x \
--with-frozenpaths=no \
@ -26,13 +27,11 @@ build() {
--enable-shared
make
make install DESTDIR=$pkg
cp LICENSE $pkgdocs/
make install DOCUMENTATION_PATH="/share/doc/$app-$version" DESTDIR=$pkg
mkfinalpkg
}
sha512sums="
a86a745a1b693ed825bd167e8c2f9333e188c903cd0beb3295aba537aab022de50fe7b1d92756ea32ed19684806e694c8e3dd3f5cc79fb653338220739aad260 ImageMagick-7.0.8-14.tar.lz
9ccd022d3403cd3a1457cb37104e3a804f94c67271847cb85b5b9084d287da77fb348d6f543bb9922c95d00c8865f55018d3e2cd947ccf0e68d335657c8d9841 ImageMagick-7.1.0-62.tar.lz
"

View file

@ -1,6 +1,6 @@
app=libice
version=1.0.10
build=1sml
build=2sml
homepage="https://xorg.freedesktop.org/"
download="https://xorg.freedesktop.org/releases/individual/lib/libICE-$version.tar.bz2"
desc="X11 Inter-Client Exchange library"
@ -18,6 +18,7 @@ prepbuilddir() {
build() {
./configure \
--prefix="" \
--docdir="/share/doc/$app-$version" \
--disable-static
make

View file

@ -1,6 +1,6 @@
app=libsm
version=1.2.3
build=1sml
build=2sml
homepage="https://xorg.freedesktop.org/"
download="https://xorg.freedesktop.org/releases/individual/lib/libSM-$version.tar.gz"
desc="X11 Session Management library"
@ -18,6 +18,7 @@ prepbuilddir() {
build() {
./configure \
--prefix="" \
--docdir="/share/doc/$app-$version" \
--disable-static
make

View file

@ -1,6 +1,6 @@
app=libx11
version=1.8.2
build=1sml
build=2sml
homepage="https://xorg.freedesktop.org/"
download="https://www.x.org/releases/individual/lib/libX11-$version.tar.xz"
desc="X11 client-side library"
@ -18,6 +18,7 @@ prepbuilddir() {
build() {
./configure \
--prefix="" \
--docdir="/share/doc/$app-$version" \
--disable-static
make

View file

@ -1,6 +1,6 @@
app=libxaw
version=1.0.13
build=1sml
build=1l2sml
homepage="https://xorg.freedesktop.org/"
download="https://www.x.org/releases/individual/lib/libXaw-$version.tar.bz2"
desc="X11 Athena Widget library"
@ -18,6 +18,7 @@ prepbuilddir() {
build() {
./configure \
--prefix="" \
--docdir="/share/doc/$app-$version" \
--disable-static
make

View file

@ -1,6 +1,6 @@
app=libxaw3d
version=1.6.3
build=1sml
build=2sml
homepage="https://xorg.freedesktop.org/"
download="https://www.x.org/releases/individual/lib/libXaw3d-$version.tar.bz2"
desc="Three-D Athena widgets"
@ -18,7 +18,7 @@ prepbuilddir() {
build() {
./configure \
--prefix="" \
--sysconfdir=/etc \
--docdir="/share/doc/$app-$version" \
--disable-static \
$builddist

View file

@ -1,6 +1,6 @@
app=libxaw3dxft
version=1.6.2d
build=1sml
build=2sml
homepage="http://sourceforge.net/projects/sf-xpaint/files/libxaw3dxft/"
download="https://sourceforge.net/projects/sf-xpaint/files/libxaw3dxft/libXaw3dXft-$version.tar.bz2"
desc="xaw3d library for xpaint"
@ -18,6 +18,7 @@ prepbuilddir() {
build() {
./configure \
--prefix="" \
--docdir="/share/doc/$app-$version" \
--disable-static
make

View file

@ -1,6 +1,6 @@
app=libxdmcp
version=1.1.3
build=1sml
build=2sml
homepage="https://xorg.freedesktop.org/"
download="https://www.x.org/releases/individual/lib/libXdmcp-$version.tar.bz2"
desc="X11 Display Manager Control Protocol library"
@ -18,6 +18,7 @@ prepbuilddir() {
build() {
./configure \
--prefix="" \
--docdir="/share/doc/$app-$version" \
--disable-static
make

View file

@ -1,6 +1,6 @@
app=libxext
version=1.3.4
build=1sml
build=2sml
homepage="https://xorg.freedesktop.org/"
download="https://www.x.org/releases/individual/lib/libXext-$version.tar.bz2"
desc="X11 miscellaneous extensions library"
@ -19,6 +19,7 @@ build() {
ac_cv_func__XEatDataWords=yes \
./configure \
--prefix="" \
--docdir="/share/doc/$app-$version" \
--disable-static
make

View file

@ -1,6 +1,6 @@
app=libxi
version=1.7.10
build=1sml
build=2sml
homepage="https://xorg.freedesktop.org/"
download="https://www.x.org/releases/individual/lib/libXi-$version.tar.bz2"
desc="X11 Input extension library"
@ -18,6 +18,7 @@ prepbuilddir() {
build() {
./configure \
--prefix="" \
--docdir="/share/doc/$app-$version" \
--disable-static
make

View file

@ -1,6 +1,6 @@
app=libxmu
version=1.1.3
build=1sml
build=2sml
homepage="https://xorg.freedesktop.org/"
download="https://www.x.org/releases/individual/lib/libXmu-$version.tar.bz2"
desc="X11 miscellaneous micro-utility library"
@ -18,6 +18,7 @@ prepbuilddir() {
build() {
./configure \
--prefix="" \
--docdir="/share/doc/$app-$version" \
--disable-static
make

View file

@ -1,6 +1,6 @@
app=libxrender
version=0.9.10
build=1sml
build=2sml
homepage="https://xorg.freedesktop.org/"
download="https://www.x.org/releases/individual/lib/libXrender-$version.tar.bz2"
desc="X Rendering Extension client library"
@ -19,6 +19,7 @@ build() {
CFLAGS="$CFLAGS -DHAVE__XEATDATAWORDS=1" \
./configure \
--prefix="" \
--docdir="/share/doc/$app-$version" \
--disable-static
make

View file

@ -1,6 +1,6 @@
app=libxt
version=1.2.0
build=1sml
build=2sml
homepage="https://xorg.freedesktop.org/"
download="https://www.x.org/releases/individual/lib/libXt-$version.tar.bz2"
desc="X11 toolkit intrinsics library"
@ -18,6 +18,7 @@ prepbuilddir() {
build() {
./configure \
--prefix="" \
--docdir="/share/doc/$app-$version" \
--disable-static
make

View file

@ -1,6 +1,6 @@
app=libxtst
version=1.2.3
build=1sml
build=2sml
homepage="https://xorg.freedesktop.org/"
download="https://www.x.org/releases/individual/lib/libXtst-$version.tar.bz2"
desc="X11 Testing -- Resource extension library"
@ -19,6 +19,7 @@ build() {
CFLAGS="$CFLAGS -DHAVE__XEATDATAWORDS=1" \
./configure \
--prefix="" \
--docdir="/share/doc/$app-$version" \
--disable-static
make