mirror of
https://gitdl.cn/https://github.com/chakralinux/desktop.git
synced 2025-01-24 02:22:13 +08:00
08a66c4024
new pkg added to fullfill checkdepends new order file python3.order
24 lines
627 B
Bash
24 lines
627 B
Bash
#
|
|
# Part of chakra-project.org
|
|
#
|
|
# Maintainer: FranzMari <franzmari[at]chakra-project[dot]it>
|
|
|
|
pkgname=python2-fuse
|
|
pkgver=0.2.1
|
|
pkgrel=4
|
|
arch=('x86_64')
|
|
pkgdesc="Python2 bindings for FUSE"
|
|
url="http://fuse.sourceforge.net/wiki/index.php/FusePython"
|
|
license=('LGPL')
|
|
depends=('fuse' 'python2')
|
|
replaces=('python-fuse')
|
|
provides=('python-fuse')
|
|
makedepends=('pkgconfig')
|
|
source=(http://downloads.sourceforge.net/sourceforge/fuse/fuse-python-${pkgver}.tar.gz)
|
|
md5sums=('9d9c5c2311ac04291ce822dfece108f8')
|
|
|
|
package() {
|
|
cd "$srcdir/fuse-python-$pkgver"
|
|
python2 setup.py install --prefix=/usr --root="$pkgdir" --optimize=1
|
|
}
|