summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 24d5de6d610e0a8797c88e041d3258831eb77d44 (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
# Contributor: Tom Killian <tom@archlinux.org>
# Contributor: Nikos Kouremenos (zeppelin) kourem at gmail dot com
# Maintainer: Stefan Husmann <stefan-husmann@t-online.de>

pkgname=autocutsel
pkgver=0.10.1
pkgrel=2
pkgdesc="synchronizes the two copy/paste buffers mainly used by X applications"
arch=('x86_64')
depends=('libxaw')
source=(https://github.com/sigmike/autocutsel/releases/download/$pkgver/autocutsel-$pkgver.tar.gz)
url="https://github.com/sigmike/autocutsel"
install=autocutsel.install
license=('GPL')
md5sums=('4e891b51745891d3367f085ff84610de')
sha256sums=('f17e06d42f7494436d4b26f4be0b6b0da39481c0400c96778e4b905b6341eb17')

build() {
  cd "${srcdir}"/$pkgname-$pkgver
  ./configure --prefix=/usr
  make
}
package() {
  cd "${srcdir}"/$pkgname-$pkgver
  make prefix="${pkgdir}"/usr install 
}