diff --git a/talimatname/genel/fifth/talimat b/talimatname/genel/fifth/talimat index dd412c633..3188776d4 100644 --- a/talimatname/genel/fifth/talimat +++ b/talimatname/genel/fifth/talimat @@ -4,16 +4,22 @@ # Depends on: webkitfltk urlmatch physfs desktop-file-utils name=fifth -version=0.4 +version=git release=1 source=() 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}" ./autogen.sh ./configure make - make install DESTDIR="${PKG}" } diff --git a/talimatname/genel/urlmatch/talimat b/talimatname/genel/urlmatch/talimat index 6390bb35d..48ab91141 100644 --- a/talimatname/genel/urlmatch/talimat +++ b/talimatname/genel/urlmatch/talimat @@ -1,18 +1,16 @@ # Description: Hızlı URL eşleştirici kitaplığı -# URL: https://github.com/clbr/${_name} +# URL: https://github.com/clbr/urlmatch # Packager: milisarge -# Depends on: git +# Depends on: name=urlmatch -version=222 +version=1.0 release=1 -source=() +source=(https://github.com/clbr/urlmatch/archive/v$version.tar.gz) build() { - git clone https://github.com/clbr/urlmatch.git - cd "${SRC}/${name}" + cd "${name}-$version" make - make install DESTDIR="${PKG}" } diff --git a/talimatname/genel/webkitfltk/talimat b/talimatname/genel/webkitfltk/talimat index 3fb4ce75b..bfc7d0eb0 100644 --- a/talimatname/genel/webkitfltk/talimat +++ b/talimatname/genel/webkitfltk/talimat @@ -1,22 +1,21 @@ # Description: Webkit Portu, Fltk 1.3'e -# URL: https://github.com/clbr/${name}/ +# URL: https://github.com/clbr/webkitfltk # Packager: milisarge # Depends on: zlib libpng libjpeg-turbo libxml2 sqlite freetype xorg-fontconfig cairo openssl curl icu harfbuzz fltk1 git ruby name=webkitfltk -version=0.1.1 +version=0.5.1 release=1 -source=() +source=(https://github.com/clbr/webkitfltk/archive/v0.5.1.tar.gz) build() { - git clone https://github.com/clbr/webkitfltk.git - cd "${SRC}/${name}" - make -C Source/WTF/wtf - make -C Source/JavaScriptCore gen - make -C Source/JavaScriptCore - make -C Source/WebCore - make -C Source/WebKit/fltk - + #git clone https://github.com/clbr/webkitfltk.git + cd "${name}-${version}" + make -j1 -C Source/WTF/wtf + make -j1 -C Source/JavaScriptCore gen + make -j1 -C Source/JavaScriptCore + make -j1 -C Source/WebCore + make -j1 -C Source/WebKit/fltk make -C Source/WebKit/fltk install DESTDIR="${PKG}" }