summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: aca6c876b92f638bbde25d8fc3eb054cfe8385be (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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
# Maintainer: Anton Hvornum <anton.feeds+AUR@gmail.com>
# makepkg --printsrcinfo > .SRCINFO
_owner=Torxed
_name=slimdhcp
pkgname=$_name-git
pkgver=0.0.1.r10.e1c6661
pkgrel=1
pkgdesc="A very slim DHCP server"
arch=('x86_64')
url="https://github.com/Torxed/slimDHCP"
license=('custom:BSD' 'cc-by-nc-sa-3.0')
depends=('python' 'python-systemd')
makedepends=('python')
#optdepends=('')
provides=('slimdhcp-git' 'slimdhcp')
conflicts=('slimdhcp-git' 'slimdhcp')
source=("git+https://github.com/$_owner/$_name.git")
sha256sums=('SKIP')

pkgver() {
    cd $_name
    r=$(git log --pretty=oneline | cut -d' ' -f1 | wc -l)
    h=$(git rev-parse --short HEAD)
    printf v0.0.1.r$r.g$h
}

prepare() {
    cd $_name

    # Create the .service file.
    cat > slimDHCP.service <<EOL
[Unit]
Description=$pkgdesc

[Service]
Type=simple
ExecStart=/usr/bin/slimDHCP
EOL

}

#build() {
#    Nothing to build
#}

package() {
    cd $_name

    # Install main application
    install -d -m755 "$pkgdir/usr/bin"

    install -m755 slimDHCP.py          "$pkgdir/usr/bin/slimDHCP"

    # Install dependencies
    install -d -m755 "$pkgdir/srv/tftp"

    install -m755 tftp.py              "$pkgdir/srv/tftp/"

    # Install the sample configuration
    #install -d -m755 "$pkgdir/etc/slimSMTP/"
    #
    #install -m755 configuration.py    "$pkgdir/etc/slimSMTP/"

    # Install the .service file
    install -d -m755 "$pkgdir/etc/systemd/system"
    install -m755 slimDHCP.service     "$pkgdir/etc/systemd/system/"

    # Install license files
    #install -Dm644 ../$_name/license.txt "$pkgdir/usr/share/licenses/$pkgname/license.txt"
}