summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 047f6df85e99bf644bcffed1e8b354a29175f310 (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
# Maintainer: Oliver Mangold <o.mangold at gmail dot com>
pkgname=xcsyncd
pkgver=190612
pkgrel=1
pkgdesc="A utility for synchronizing X11 clipboards"
arch=('i686' 'x86_64')
url="http://github.com/reconquest/xcsyncd"
#license=()
makedepends=(gengetopt)
source=(
    "git+https://github.com/reconquest/xcsyncd.git#commit=d457f7a1eb5d4fd43300d5a0946049c37cfb286d"
    makefile.patch
)
sha256sums=(SKIP SKIP)
conflicts=(xcsyncd-git)

prepare() {
    cd "${srcdir}/${pkgname}"
    patch -p0 <../makefile.patch
}

build() {
    cd "${srcdir}/${pkgname}"
    make xcsyncd
}

package() {
    cd "${srcdir}/${pkgname}"
    make install DESTDIR="${pkgdir}"
}