gruplar
This commit is contained in:
parent
31340dfb92
commit
be0ac7defa
|
@ -1,35 +1,28 @@
|
|||
# Tanım: ACPI olayları için esnek ve genişletilebilir bir arthizmet.
|
||||
# URL: http://sourceforge.net/projects/acpid2/
|
||||
# Paketçi: milisarge
|
||||
# Gerekler:
|
||||
# Gerekler:
|
||||
# Grup: sistem
|
||||
|
||||
isim=acpid
|
||||
surum=2.0.25
|
||||
devir=1
|
||||
kaynak=(http://downloads.sourceforge.net/acpid2/$isim-$surum.tar.xz lid lid.sh)
|
||||
kaynak=(http://downloads.sourceforge.net/acpid2/$isim-$surum.tar.xzlidlid.sh)
|
||||
|
||||
derle() {
|
||||
|
||||
cd $isim-$surum
|
||||
|
||||
source /etc/blfs-bootscripts
|
||||
wget http://www.linuxfromscratch.org/blfs/downloads/svn/$scripts-$scriptsversion.tar.bz2
|
||||
tar xvf $scripts-$scriptsversion.tar.bz2
|
||||
|
||||
|
||||
./configure --prefix=/usr \
|
||||
--docdir=/usr/share/doc/$isim-$surum
|
||||
make
|
||||
make DESTDIR=$PKG install
|
||||
install -m755 -d $PKG/etc/acpi/events
|
||||
|
||||
cp -r samples $PKG/usr/share/doc/$isim-$surum
|
||||
cp -r $SRC/lid $PKG/etc/acpi/events
|
||||
cp -r $SRC/lid.sh $PKG/etc/acpi
|
||||
|
||||
chmod +x $PKG/etc/acpi/lid.sh
|
||||
|
||||
cd $scripts-$scriptsversion
|
||||
make DESTDIR=$PKG install-acpid
|
||||
|
||||
}
|
||||
|
|
|
@ -1,21 +1,20 @@
|
|||
# Tanım: cp ve mv komutlarının ilerleme çubuğu (progressbar) için yamalanmış versiyonu.
|
||||
# Tanım: cp ve mv komutlarının ilerleme çubuğu (progressbar) için yamalanmış versiyonu.
|
||||
# URL: https://www.gnu.org/software/coreutils/
|
||||
# Paketçi: milisarge
|
||||
# Gerekler:
|
||||
# Gerekler:
|
||||
# Grup: sistem
|
||||
|
||||
isim=advcp
|
||||
_isim=coreutils
|
||||
surum=8.24
|
||||
devir=1
|
||||
kaynak=(ftp://ftp.gnu.org/gnu/$_name/$_name-$surum.tar.xz
|
||||
advcpmv-${surum}.patch)
|
||||
advcpmv-${surum}.patch)
|
||||
|
||||
_isim=coreutils
|
||||
derle() {
|
||||
export FORCE_UNSAFE_CONFIGURE=1
|
||||
cd ${SRC}/${_name}-${surum}
|
||||
|
||||
patch -p1 -i ${SRC}/advcpmv-${surum}.patch
|
||||
|
||||
./configure --prefix=/usr \
|
||||
--libexecdir=/usr/lib \
|
||||
--enable-no-install-program=groups,hostname,kill,uptime
|
||||
|
@ -23,5 +22,4 @@ derle() {
|
|||
cd ${SRC}/${_name}-${surum}
|
||||
install -D src/cp ${PKG}/usr/bin/acp
|
||||
install -D src/mv ${PKG}/usr/bin/amv
|
||||
|
||||
}
|
||||
|
|
|
@ -2,6 +2,7 @@
|
|||
# URL: http://www.gnome.org/
|
||||
# Paketçi: milisarge
|
||||
# Gerekler: intltool gtk-update-icon-cache hicolor-icon-theme icon-naming-utils librsvg
|
||||
# Grup: grafik_tasarım
|
||||
|
||||
isim=adwaita-icon-theme
|
||||
surum=3.24.0
|
||||
|
|
|
@ -2,6 +2,7 @@
|
|||
# URL: https://www.xfce-look.org/p/1099669/
|
||||
# Paketçi: yasarciv67@gmail.com
|
||||
# Gerekler:
|
||||
# Grup: grafik_tasarım
|
||||
|
||||
isim=adwaitadark-gtk-theme
|
||||
surum=1
|
||||
|
|
|
@ -1,24 +1,24 @@
|
|||
# Tanım: Apple Dosyalama Protokol (AFP) kütüphanesi.
|
||||
# URL: http://alexthepuffin.googlepages.com/
|
||||
# Paketçi: yakar (aydin@komutan.org)
|
||||
# Paketçi: yakar(aydin@komutan.org)
|
||||
# Gerekler: fuse libgcrypt
|
||||
# Grup: kütüphane
|
||||
|
||||
isim=afpfs-ng
|
||||
surum=0.8.1
|
||||
devir=1
|
||||
kaynak=( http://downloads.sourceforge.net/sourceforge/$isim/$isim-$surum.tar.bz2
|
||||
fix_afpfs-ng_includes.patch
|
||||
01-gcrypt.patch
|
||||
02-pointer.patch
|
||||
10-fix-errno.patch
|
||||
20-build-error-fixes.patch
|
||||
21-header-path-fix.patch
|
||||
30-include-fixes.patch
|
||||
)
|
||||
kaynak=(http://downloads.sourceforge.net/sourceforge/$isim/$isim-$surum.tar.bz2
|
||||
fix_afpfs-ng_includes.patch
|
||||
01-gcrypt.patch
|
||||
02-pointer.patch
|
||||
10-fix-errno.patch
|
||||
20-build-error-fixes.patch
|
||||
21-header-path-fix.patch
|
||||
30-include-fixes.patch
|
||||
)
|
||||
|
||||
derle() {
|
||||
cd "$SRC/$isim-$surum"
|
||||
|
||||
# apply patches
|
||||
patch -Np1 -i "$SRC/fix_afpfs-ng_includes.patch"
|
||||
patch -Np1 -i "$SRC/01-gcrypt.patch"
|
||||
|
@ -27,11 +27,9 @@ derle() {
|
|||
patch -Np1 -i "$SRC/20-build-error-fixes.patch"
|
||||
patch -Np1 -i "$SRC/21-header-path-fix.patch"
|
||||
patch -Np1 -i "$SRC/30-include-fixes.patch"
|
||||
|
||||
./configure --prefix=/usr
|
||||
make
|
||||
make DESTDIR="$PKG" install
|
||||
|
||||
# install headers
|
||||
cd include
|
||||
for header in afpfs-ng/*.h; do
|
||||
|
|
|
@ -1,7 +1,8 @@
|
|||
# Tanım: 802.11 WEP ve WPA-PSK protokolleri için key cracker.
|
||||
# URL: http://www.aircrack-ng.org/
|
||||
# Paketçi: yakar (aydin@komutan.org)
|
||||
# Paketçi: yakar(aydin@komutan.org)
|
||||
# Gerekler: sqlite iw net-tools wireless-tools
|
||||
# Grup: güvenlik
|
||||
|
||||
isim=aircrack-ng-beta
|
||||
surum=1.2
|
||||
|
@ -10,11 +11,9 @@ kaynak=(http://download.aircrack-ng.org/aircrack-ng-$surum-beta3.tar.gz)
|
|||
|
||||
derle() {
|
||||
cd "$SRC/aircrack-ng-$surum-beta3"
|
||||
|
||||
make SQLITE=true UNSTABLE=true
|
||||
|
||||
cd "$SRC/aircrack-ng-$surum-beta3"
|
||||
|
||||
make DESTDIR="$PKG" SQLITE=true UNSTABLE=true \
|
||||
bindir=/usr/bin sbindir=/usr/bin mandir=/usr/share/man/man1 install
|
||||
}
|
||||
|
|
|
@ -2,6 +2,7 @@
|
|||
# URL: http://www.aircrack-ng.org/
|
||||
# Paketçi: milisarge
|
||||
# Gerekler: libnl
|
||||
# Grup: güvenlik
|
||||
|
||||
isim=aircrack-ng
|
||||
surum=1.2
|
||||
|
|
|
@ -2,6 +2,7 @@
|
|||
# URL: https://wiki.gnome.org/Apps/Aisleriot
|
||||
# Paketçi: yasarciv67@gmail.com
|
||||
# Gerekler: intltool itstool docbook-xsl yelp-tools appstream-glib gnome-common gtk3 librsvg libcanberra gconf dconf tdb desktop-file-utils guile
|
||||
# Grup: oyunlar
|
||||
|
||||
isim=aisleriot
|
||||
surum=3.22.2
|
||||
|
@ -18,5 +19,4 @@ derle() {
|
|||
sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
|
||||
make
|
||||
make DESTDIR=$PKG install
|
||||
|
||||
}
|
||||
|
|
|
@ -1,13 +1,14 @@
|
|||
# Tanım: AKIS kart sürücü ve dosyaları
|
||||
# URL: http://www.akiskart.com.tr
|
||||
# Paketçi: milisarge
|
||||
# Gerekler: pcsc-lite ccid openjdk
|
||||
# Gerekler: pcsc-lite ccid openjdk
|
||||
# Grup: sürücüler
|
||||
|
||||
isim=akiskart
|
||||
surum=1.6
|
||||
devir=1
|
||||
kaynak=(http://www.akiskart.com.tr/dosyalar/akis_${surum}_amd64.deb
|
||||
akia)
|
||||
akia)
|
||||
|
||||
derle() {
|
||||
ar x ${SRC}/akis_${surum}_amd64.deb
|
||||
|
|
|
@ -2,6 +2,7 @@
|
|||
# URL: https://projects.kde.org/akonadi
|
||||
# Paketçi: alihan-ozturk28@hotmail.com
|
||||
# Gerekler: kf5-extra-cmake-modules postgresql kf5-kdesignerplugin qt5 boost kf5-kio kf5-kitemmodels mariadb
|
||||
# Grup: sistem
|
||||
|
||||
isim=akonadi
|
||||
surum=16.08.2
|
||||
|
@ -15,7 +16,6 @@ derle() {
|
|||
-DCMAKE_INSTALL_LIBDIR=lib \
|
||||
-DBUILD_TESTING=OFF \
|
||||
-Wno-dev
|
||||
|
||||
make
|
||||
make DESTDIR=$PKG install
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue