summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 46b09ed005163d4d059c358f3e46146fc3cd4a07 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
#
# Python 3 packages for alternative (github) implementation of python-magic
#

pkgname='python-magic-git'
pkgver='0.4.6'
pkgrel=3
pkgdesc="Python 3 packages for alternative (github) implementation of python-magic"
arch=('any')
license=('MIT')
depends=('python')
makedepends=('git' 'sed')
conflicts=('python-magic')

source=("${pkgname}::git+https://github.com/ahupp/python-magic")
md5sums=('SKIP')

pkgdir='pkg'
srcdir='src'


package() {
    local PYTHON="/usr/bin/env python3"
    local USR_PATH="${pkgdir}/usr"

    # Set up /usr directory
    install -d -m 755 ${USR_PATH}

    # Clean up build dir
    rm -Rf build

    cd "${srcdir}/${pkgname}"

    # Fix setup.py for distutils.core
    sed -i 's/\(from setuptools.*\)/#\1/' setup.py
    sed -i 's/#\(from distutils.*\)/\1/' setup.py

    # Install python packages to $pkgdir
    ${PYTHON} setup.py install --prefix ${USR_PATH}

    # Make directories accessible for anyone
    find "${USR_PATH}" -type d -exec chmod 755 {} \;

    # Make library files readable for anyone but not executable
    find "${USR_PATH}" -type f -exec chmod 644 {} \;
}