catfish.paketlendi
This commit is contained in:
parent
db07b5b24b
commit
8e0fbaa726
|
@ -0,0 +1,18 @@
|
||||||
|
# Description=Çok yönlü dosyaarama aracı
|
||||||
|
# Url=https://launchpad.net/catfish-search
|
||||||
|
# Packager: milisarge yasarciv
|
||||||
|
# Depends on: intltool python-distutils-extra python-gobject python-xdg python-pexpect python-cairo python-ptyprocess gtk3 xdg-utils
|
||||||
|
|
||||||
|
name=catfish
|
||||||
|
version=1.4.2
|
||||||
|
release=1
|
||||||
|
|
||||||
|
source=( https://launchpad.net/catfish-search/${version%.*}/$version/+download/$name-$version.tar.bz2)
|
||||||
|
|
||||||
|
build() {
|
||||||
|
cd ${name}-$version
|
||||||
|
python setup.py build
|
||||||
|
python setup.py install --root="$PKG" --optimize=1
|
||||||
|
install -d "$PKG/usr/share/pixmaps"
|
||||||
|
ln -s "/usr/share/icons/hicolor/scalable/apps/$name.svg" "$PKG/usr/share/pixmaps/$name.svg"
|
||||||
|
}
|
|
@ -0,0 +1,14 @@
|
||||||
|
# Description: Python derleme sistemi
|
||||||
|
# URL: https://launchpad.net/python-distutils-extra
|
||||||
|
# Packager: milisarge
|
||||||
|
# Depends on: python python-setuptools intltool
|
||||||
|
|
||||||
|
name=python-distutils-extra
|
||||||
|
version=2.40
|
||||||
|
release=1
|
||||||
|
source=(https://launchpad.net/ubuntu/+archive/primary/+files/python-distutils-extra_2.40.tar.xz)
|
||||||
|
|
||||||
|
build() {
|
||||||
|
cd $name-$version
|
||||||
|
python setup.py install --root="$PKG/"
|
||||||
|
}
|
|
@ -0,0 +1,14 @@
|
||||||
|
# Description: Diğer programların otomasyon ve kontrolu için kullanılan python kütüphanesi.
|
||||||
|
# URL: http://pexpect.readthedocs.org/en/stable/
|
||||||
|
# Packager: milisarge
|
||||||
|
# Depends on: python
|
||||||
|
|
||||||
|
name=python-pexpect
|
||||||
|
version=4.2.1
|
||||||
|
release=1
|
||||||
|
source=(https://pypi.python.org/packages/e8/13/d0b0599099d6cd23663043a2a0bb7c61e58c6ba359b2656e6fb000ef5b98/pexpect-$version.tar.gz)
|
||||||
|
|
||||||
|
build() {
|
||||||
|
cd "pexpect-$version"
|
||||||
|
python setup.py install --root="$PKG"
|
||||||
|
}
|
|
@ -0,0 +1,14 @@
|
||||||
|
# Description: Sahte terminal altında altsüreç çalıştırma
|
||||||
|
# URL: https://github.com/pexpect/ptyprocess
|
||||||
|
# Packager: milisarge
|
||||||
|
# Depends on: python python-setuptools
|
||||||
|
|
||||||
|
name=python-ptyprocess
|
||||||
|
version=0.5.1
|
||||||
|
release=1
|
||||||
|
source=(https://pypi.python.org/packages/source/p/ptyprocess/ptyprocess-$version.tar.gz)
|
||||||
|
|
||||||
|
build() {
|
||||||
|
cd ptyprocess-$version
|
||||||
|
python setup.py install --root="$PKG/" --prefix=/usr --optimize=0
|
||||||
|
}
|
Loading…
Reference in New Issue