blob: 86ef8bfb65a329ad7858f5f7e8faecf792c6d671 (
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
|
pkgname=xeyes-git
pkgver=1.00
pkgrel=1
epoch=
pkgdesc="A 'follow the mouse' X demo, using the X SHAPE extension"
arch=(x86_64 arm)
url="https://gitlab.freedesktop.org/xorg/app/xeyes.git"
license=('GPL')
groups=()
depends=()
makedepends=()
checkdepends=()
optdepends=()
provides=()
conflicts=()
replaces=()
backup=()
options=()
install=
changelog=
source=("git+$url")
noextract=()
sha256sums=('SKIP')
validpgpkeys=()
build() {
cd "xeyes"
./autogen.sh
make
}
package() {
cd "xeyes"
install -Dm755 xeyes "${pkgdir}/usr/local/bin/xeyes"
install -Dm644 README.md "${pkgdir}/usr/share/xeyes/README.md"
install -Dm644 COPYING "${pkgdir}/usr/share/xeyes/COPYING"
}
|