Changed prefix build option in several extra package build files

This commit is contained in:
PktSurf 2023-06-12 21:56:31 +05:30
parent cc938acea4
commit 0574064e65
23 changed files with 25 additions and 25 deletions

View file

@ -29,7 +29,7 @@ _plugins="applix babelfish bmp clarisworks collab docbook eml epub \
xslfo" xslfo"
./configure \ ./configure \
--prefix="" \ --prefix= \
--enable-shared \ --enable-shared \
--disable-static \ --disable-static \
--enable-plugins="$_plugins" --enable-plugins="$_plugins"

View file

@ -17,7 +17,7 @@ prepbuilddir() {
} }
build() { build() {
python setup.py install --prefix="" --root=$pkg python setup.py install --root=$pkg
cp LICENSE* $pkgdocs/ cp LICENSE* $pkgdocs/

View file

@ -18,7 +18,7 @@ prepbuilddir() {
build() { build() {
./configure \ ./configure \
--prefix="" \ --prefix= \
--sysconfdir=/etc \ --sysconfdir=/etc \
--localstatedir=/var \ --localstatedir=/var \
--disable-static \ --disable-static \

View file

@ -24,7 +24,7 @@ prepbuilddir() {
build() { build() {
./configure \ ./configure \
--prefix="" \ --prefix= \
--sbindir=/bin \ --sbindir=/bin \
--sysconfdir=/etc \ --sysconfdir=/etc \
--libexecdir=/lib \ --libexecdir=/lib \

View file

@ -20,7 +20,7 @@ prepbuilddir() {
build() { build() {
./configure \ ./configure \
--prefix="" --prefix=
make make
make install DESTDIR=$pkg make install DESTDIR=$pkg

View file

@ -22,7 +22,7 @@ prepbuilddir() {
build() { build() {
./configure \ ./configure \
--prefix="" \ --prefix= \
--with-cairo \ --with-cairo \
--disable-gnome \ --disable-gnome \
--with-hardbooks=no --with-hardbooks=no

View file

@ -18,7 +18,7 @@ prepbuilddir() {
build() { build() {
make make
make install PREFIX="/" MANPREFIX=/share/man DESTDIR=$pkg make install PREFIX=/ MANPREFIX=/share/man DESTDIR=$pkg
cp LICENSE $pkgdocs/ cp LICENSE $pkgdocs/

View file

@ -21,7 +21,7 @@ prepbuilddir() {
build() { build() {
make make
make install PREFIX="/" MANPREFIX=/share/man DESTDIR=$pkg make install PREFIX=/ MANPREFIX=/share/man DESTDIR=$pkg
cp LICENSE $pkgdocs/ cp LICENSE $pkgdocs/

View file

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

View file

@ -19,7 +19,7 @@ prepbuilddir() {
build() { build() {
mkdir -p smbuild && cd smbuild mkdir -p smbuild && cd smbuild
cmake .. \ cmake .. \
-DCMAKE_INSTALL_PREFIX="" \ -DCMAKE_INSTALL_PREFIX= \
-DCMAKE_CXX_IMPLICIT_INCLUDE_DIRECTORIES=/include \ -DCMAKE_CXX_IMPLICIT_INCLUDE_DIRECTORIES=/include \
-DCMAKE_INSTALL_LIBDIR=lib \ -DCMAKE_INSTALL_LIBDIR=lib \
-DCMAKE_BUILD_TYPE=Release \ -DCMAKE_BUILD_TYPE=Release \

View file

@ -18,7 +18,7 @@ prepbuilddir() {
build() { build() {
./configure \ ./configure \
--prefix="" \ --prefix= \
--without-docs \ --without-docs \
--disable-static --disable-static

View file

@ -18,7 +18,7 @@ prepbuilddir() {
build() { build() {
./configure \ ./configure \
--prefix="/" \ --prefix=/ \
--disable-introspection --disable-introspection
make make

View file

@ -22,7 +22,7 @@ prepbuilddir() {
build() { build() {
mkdir -p smbuild && cd smbuild mkdir -p smbuild && cd smbuild
meson .. \ meson .. \
--prefix="/" --prefix=/
ninja ninja
DESTDIR="$pkg" ninja install DESTDIR="$pkg" ninja install

View file

@ -22,7 +22,7 @@ prepbuilddir() {
build() { build() {
LDFLAGS="-lterminfo -lncurses" \ LDFLAGS="-lterminfo -lncurses" \
./configure \ ./configure \
--prefix="" --prefix=
make make
make install DESTDIR=$pkg make install DESTDIR=$pkg

View file

@ -20,7 +20,7 @@ prepbuilddir() {
build() { build() {
python3 setup.py build python3 setup.py build
python3 setup.py install --prefix="" --root=$pkg python3 setup.py install --root=$pkg
cp COPYING $pkgdocs/ cp COPYING $pkgdocs/

View file

@ -25,7 +25,7 @@ prepbuilddir() {
build() { build() {
./configure \ ./configure \
--prefix="" \ --prefix= \
--sbindir=/bin \ --sbindir=/bin \
--without-zstd --without-zstd

View file

@ -26,9 +26,9 @@ build() {
rm -rf thirdparty/"$library" rm -rf thirdparty/"$library"
done done
make USE_SYSTEM_LIBS=yes prefix="/" CURL_LIBS="-lcurl -lpthread" \ make USE_SYSTEM_LIBS=yes prefix=/ CURL_LIBS="-lcurl -lpthread" \
build=release libs apps build=release libs apps
make USE_SYSTEM_LIBS=yes prefix="/" DESTDIR="$pkg" install make USE_SYSTEM_LIBS=yes prefix=/ DESTDIR="$pkg" install
# .desktop taken from debian and modified: # .desktop taken from debian and modified:
install -Dm 644 $srcdir/$app.desktop $pkg/share/applications/$app.desktop install -Dm 644 $srcdir/$app.desktop $pkg/share/applications/$app.desktop

View file

@ -20,7 +20,7 @@ build() {
mkdir -p build/server && cd build mkdir -p build/server && cd build
cp $srcdir/scrcpy-server-v"$version".zip server/scrcpy-server cp $srcdir/scrcpy-server-v"$version".zip server/scrcpy-server
meson .. \ meson .. \
--prefix="/" \ --prefix=/ \
--buildtype release --buildtype release
ninja ninja

View file

@ -21,7 +21,7 @@ prepbuilddir() {
build() { build() {
make make
make install PREFIX="/" DESTDIR=$pkg make install PREFIX=/ DESTDIR=$pkg
cp LICENSE $pkgdocs/ cp LICENSE $pkgdocs/

View file

@ -18,7 +18,7 @@ prepbuilddir() {
build() { build() {
LIBS="-lncurses -lterminfo" \ LIBS="-lncurses -lterminfo" \
./configure \ ./configure \
--prefix="" \ --prefix= \
make make
make install DESTDIR=$pkg make install DESTDIR=$pkg

View file

@ -18,7 +18,7 @@ prepbuilddir() {
build() { build() {
./configure \ ./configure \
--prefix="" --prefix=
make make
make install DESTDIR=$pkg make install DESTDIR=$pkg

View file

@ -23,7 +23,7 @@ build() {
CFLAGS+=" -D__off_t=off_t" \ CFLAGS+=" -D__off_t=off_t" \
LIBS="-largp" \ LIBS="-largp" \
./configure \ ./configure \
--prefix="/" \ --prefix=/ \
--sbindir=/bin \ --sbindir=/bin \
--disable-static --disable-static

View file

@ -21,7 +21,7 @@ build() {
LIBS="-lcurses -lterminfo" \ LIBS="-lcurses -lterminfo" \
LDFLAGS="-static" \ LDFLAGS="-static" \
./configure \ ./configure \
--prefix="" \ --prefix= \
--sysconfdir=/etc \ --sysconfdir=/etc \
--disable-netbeans --disable-gui \ --disable-netbeans --disable-gui \
--with-x=no --enable-multibyte --with-features=normal \ --with-x=no --enable-multibyte --with-features=normal \