paketlendi
This commit is contained in:
commit
b43b93ad31
|
@ -0,0 +1,25 @@
|
|||
# Description: A library that provides automatic proxy configuration management
|
||||
# URL: http://libproxy.github.io/libproxy/
|
||||
# Packager: milisarge
|
||||
# Depends on: cmake networkmanager python perl glib webkitgtk3
|
||||
|
||||
name=libproxy
|
||||
version=0.4.12
|
||||
release=1
|
||||
|
||||
source=(https://github.com/libproxy/libproxy/archive/$version.tar.gz)
|
||||
|
||||
build() {
|
||||
mkdir build
|
||||
cd build
|
||||
cmake ../${name}-${version} \
|
||||
-DCMAKE_INSTALL_PREFIX=/usr \
|
||||
-DLIBEXEC_INSTALL_DIR=/usr/lib/libproxy \
|
||||
-DCMAKE_SKIP_RPATH=ON \
|
||||
-DPERL_VENDORINSTALL=yes \
|
||||
-DCMAKE_BUILD_TYPE=Release \
|
||||
-DWITH_WEBKIT3=ON \
|
||||
-DWITH_MOZJS=ON
|
||||
make
|
||||
make DESTDIR=$PKG install
|
||||
}
|
|
@ -1,6 +1,7 @@
|
|||
# Description: A C library for reading, creating, and modifying zip archives
|
||||
# URL: http://www.nih.at/libzip/index.html
|
||||
# Packager: pierre at nutyx dot org
|
||||
# Packager: milisarge
|
||||
# Depends on:
|
||||
|
||||
name=libzip
|
||||
version=1.0.1
|
||||
|
|
|
@ -4,6 +4,7 @@
|
|||
# Depends on: poppler xorg-libxxf86vm libpng xorg-fontconfig libjpeg-turbo cairo libxml2 openjpeg lcms lcms2 qt5
|
||||
|
||||
name=poppler-qt5
|
||||
version=0.41.0
|
||||
release=1
|
||||
|
||||
source=(http://poppler.freedesktop.org/poppler-$version.tar.xz)
|
||||
|
|
|
@ -1,22 +1,28 @@
|
|||
# Description: engine of made Web free for the browsers web version 3
|
||||
# URL: http://webkitgtk.org/
|
||||
# Packager: pierre at nutyx dot org
|
||||
# Depends on: libwebp libsecret geoclue gperf gtk2 gtk3 curl dbus gstreamer1-plugins-base icu enchant libsoup libxslt xorg-libxt ruby gtk-doc
|
||||
# Description: Small, efficient and fast rendering engine for Web Browsers.
|
||||
# URL: http://www.webkitgtk.org/
|
||||
# Packager: milisarge
|
||||
# Depends on: enchant xorg-glu gperf gstreamer-plugins-base gtk2 gtk3 harfbuzz icu libsecret libsoup libwebp ruby shared-mime-info xorg-libxt
|
||||
|
||||
name=webkitgtk3
|
||||
version=2.4.9
|
||||
version=2.4.11
|
||||
release=1
|
||||
|
||||
source=(http://webkitgtk.org/releases/webkitgtk-$version.tar.xz)
|
||||
|
||||
build() {
|
||||
cd webkitgtk-$version
|
||||
sed -i '/generate-gtkdoc --rebase/s:^:# :' GNUmakefile.in
|
||||
cd webkitgtk-$version
|
||||
|
||||
mkdir -vp build-3
|
||||
cp -a Documentation build-3
|
||||
cd build-3
|
||||
install -d build
|
||||
cd build
|
||||
|
||||
../configure --prefix=/usr \
|
||||
--enable-introspection
|
||||
make || make -j1
|
||||
make DESTDIR=$PKG install || make -j1 DESTDIR=$PKG install
|
||||
../configure \
|
||||
--prefix=/usr \
|
||||
--disable-geolocation \
|
||||
--disable-gtk-doc-html \
|
||||
--disable-silent-rules \
|
||||
--enable-video \
|
||||
--enable-jit \
|
||||
--libexecdir=/usr/lib/webkitgtk3
|
||||
|
||||
make
|
||||
make DESTDIR=$PKG install
|
||||
}
|
||||
|
|
|
@ -7,7 +7,7 @@ name=xinetd
|
|||
version=2.3.15
|
||||
release=1
|
||||
source=(ftp://anduin.linuxfromscratch.org/BLFS/xinetd/$name-$version.tar.gz
|
||||
xinetd.conf chargen daytime echo systat time )
|
||||
xinetd.conf chargen daytime echo systat xined_time )
|
||||
|
||||
build() {
|
||||
|
||||
|
@ -42,7 +42,7 @@ install -v -m755 -d $PKG/etc/xinetd.d
|
|||
cp -v $SRC/systat $PKG/etc/xinetd.d
|
||||
|
||||
install -v -m755 -d $PKG/etc/xinetd.d
|
||||
cp -v $SRC/time $PKG/etc/xinetd.d
|
||||
cp -v $SRC/xined_time $PKG/etc/xinetd.d/time
|
||||
|
||||
cd $scripts-$scriptsversion
|
||||
make DESTDIR=$PKG install-xinetd
|
||||
|
|
Loading…
Reference in New Issue