fifth-gerekler

This commit is contained in:
milisarge 2017-05-21 18:12:39 +03:00
parent 92a3e07f22
commit dfb55a118d
3 changed files with 24 additions and 21 deletions

View File

@ -4,16 +4,22 @@
# Depends on: webkitfltk urlmatch physfs desktop-file-utils # Depends on: webkitfltk urlmatch physfs desktop-file-utils
name=fifth name=fifth
version=0.4 version=git
release=1 release=1
source=() source=()
build() { build() {
git clone https://github.com/clbr/fifth.git if [ ! -d $DERLEME_KAYNAKDIZIN/fifth ];then
git clone https://github.com/clbr/fifth.git $DERLEME_KAYNAKDIZIN/fifth
else
cd $DERLEME_KAYNAKDIZIN/fifth
git pull
cd -
fi
cp -r $DERLEME_KAYNAKDIZIN/fifth ${SRC}/fifth
cd "${SRC}/${name}" cd "${SRC}/${name}"
./autogen.sh ./autogen.sh
./configure ./configure
make make
make install DESTDIR="${PKG}" make install DESTDIR="${PKG}"
} }

View File

@ -1,18 +1,16 @@
# Description: Hızlı URL eşleştirici kitaplığı # Description: Hızlı URL eşleştirici kitaplığı
# URL: https://github.com/clbr/${_name} # URL: https://github.com/clbr/urlmatch
# Packager: milisarge # Packager: milisarge
# Depends on: git # Depends on:
name=urlmatch name=urlmatch
version=222 version=1.0
release=1 release=1
source=() source=(https://github.com/clbr/urlmatch/archive/v$version.tar.gz)
build() { build() {
git clone https://github.com/clbr/urlmatch.git cd "${name}-$version"
cd "${SRC}/${name}"
make make
make install DESTDIR="${PKG}" make install DESTDIR="${PKG}"
} }

View File

@ -1,22 +1,21 @@
# Description: Webkit Portu, Fltk 1.3'e # Description: Webkit Portu, Fltk 1.3'e
# URL: https://github.com/clbr/${name}/ # URL: https://github.com/clbr/webkitfltk
# Packager: milisarge # Packager: milisarge
# Depends on: zlib libpng libjpeg-turbo libxml2 sqlite freetype xorg-fontconfig cairo openssl curl icu harfbuzz fltk1 git ruby # Depends on: zlib libpng libjpeg-turbo libxml2 sqlite freetype xorg-fontconfig cairo openssl curl icu harfbuzz fltk1 git ruby
name=webkitfltk name=webkitfltk
version=0.1.1 version=0.5.1
release=1 release=1
source=() source=(https://github.com/clbr/webkitfltk/archive/v0.5.1.tar.gz)
build() { build() {
git clone https://github.com/clbr/webkitfltk.git #git clone https://github.com/clbr/webkitfltk.git
cd "${SRC}/${name}" cd "${name}-${version}"
make -C Source/WTF/wtf make -j1 -C Source/WTF/wtf
make -C Source/JavaScriptCore gen make -j1 -C Source/JavaScriptCore gen
make -C Source/JavaScriptCore make -j1 -C Source/JavaScriptCore
make -C Source/WebCore make -j1 -C Source/WebCore
make -C Source/WebKit/fltk make -j1 -C Source/WebKit/fltk
make -C Source/WebKit/fltk install DESTDIR="${PKG}" make -C Source/WebKit/fltk install DESTDIR="${PKG}"
} }