summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 965b8db4cfd4f630ab460e08431f23c5a51ca912 (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
# Maintainer: Arseniy Movshev <dodoradio@outlook.com>
# Contributor: Beej Jorgensen <beej@beej.us>
pkgname=xtide-wvs
pkgver=20130529
pkgrel=2
pkgdesc="World vector shoreline data for XTide"
arch=('any')
url="http://www.flaterco.com/xtide/files.html#WVS"
license=('custom')
source=(
  'https://flaterco.com/files/xtide/wvs.tar.bz2'
  'license.txt'
)
md5sums=('56325c8105c7137ced73396f2f2d8221'
         '8bb852301ffc904570d90c0d3c564635')

package() {
  # license
  install -D -m0644 $srcdir/license.txt ${pkgdir}/usr/share/licenses/${pkgname}/license.txt

  # data files
  install -d $pkgdir/usr/share/xtide/
  install -m0644 $srcdir/wvs*.dat $pkgdir/usr/share/xtide
}

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