summaryrefslogtreecommitdiff
path: root/opt/inotify-tools/MAKEPKG
blob: 87a3dee74fb3f749d065a306f096629a1334f4cd (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
#!/bin/mkpkg
# description: Tools for the Linux inotify filesystem watcher
# url: https://github.com/inotify-tools/inotify-tools

name=inotify-tools
version=4.25.9.0
release=1
source=(https://github.com/inotify-tools/inotify-tools/archive/refs/tags/${version}.tar.gz)
makedeps=(autoconf automake libtool)

sha256sums=(
    "d33a4fd24c72c2d08893f129d724adf725b93dae96c359e4f4e9f32573cc853b"
)

build() {
    cd $name-$version
    ./autogen.sh
    CONFIG_SHELL=/bin/bash ./configure \
        --prefix=/usr \
        --disable-static
    make
    make DESTDIR=$PKG install
    rm -f $PKG/usr/lib/libinotifytools.la
}

signify() {
    untrusted comment: public key
    RWTZ9IduCSQ/mL8337TEUinPwT92xFEUpD92hkS7IxcOnzTt9QdpohT3
}

# vim: filetype=sh