summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: e3c5146c2e2eedf13de2b9b13d0b33a7b04a36db (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
# Maintainer: HurricanePootis <hurricanepootis@protonmail.com>
# Contributor: Christopher Snowhill <kode54@gmail.com>
# Contributor: Lukas Jirkovsky <l.jirkovsky@gmail.com>
pkgname=eos_portable_archive
pkgver=5.1
pkgrel=6
pkgdesc="A portable binary archive to be used with boost::serialization"
arch=('any')
url="https://epa.codeplex.com/"
license=('BSL-1.0')
depends=('boost')
source=("https://github.com/daldegam/eos-portable-archive/archive/refs/tags/v${pkgver}.tar.gz")
sha256sums=('c0aec98afc77affb3654c691ccf1128c938ebb46813cf753627f0e13c21fd734')

package() {
  cd "$srcdir/eos-portable-archive-${pkgver}/eos"
  for file in *.hpp;
  do
	install -Dm644 $file "$pkgdir/usr/include/eos/$file"
  done
}