summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 8e8b9bc9d65abcb147b5febbec1e501df1ccb66b (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
# Maintainer: Kyle <kyle@gmx.ca>
pkgname=files-f123light-git
_gitname=files-F123Light
pkgver=0.0 # automatically determined from git origin
pkgrel=1
pkgdesc="System and user configuration files, scripts and other files specific to F123Light, an ArchLinuxARM-based operating system for the Raspberry Pi 2 and 3"
arch=(any)
url="http://f123.org"
license=('GPL3')
depends=('')
makedepends=('git')
provides=('')
conflicts=('')
options=('')
source=('git+https://github.com/F123/Files-F123Light.git')
md5sums=('SKIP')

pkgver() {
  cd $_gitname
  # Use the tag of the last commit
  git describe --always | sed -e 's|v||' -e 's|-|.|g'
}

package() {
  cd $_gitname
  cp -a files/* $pkgdir
}

# vim:set ts=2 sw=2 et: