diff options
Diffstat (limited to 'aur')
| -rw-r--r-- | aur/bond-git/.SRCINFO | 18 | ||||
| -rw-r--r-- | aur/bond-git/PKGBUILD | 39 | ||||
| -rw-r--r-- | aur/coreclr-git/.SRCINFO | 22 | ||||
| -rw-r--r-- | aur/coreclr-git/PKGBUILD | 35 | ||||
| -rw-r--r-- | aur/disque-git/.SRCINFO | 13 | ||||
| -rw-r--r-- | aur/disque-git/PKGBUILD | 31 |
6 files changed, 158 insertions, 0 deletions
diff --git a/aur/bond-git/.SRCINFO b/aur/bond-git/.SRCINFO new file mode 100644 index 0000000..d216832 --- /dev/null +++ b/aur/bond-git/.SRCINFO @@ -0,0 +1,18 @@ +pkgbase = bond-git + pkgdesc = A cross-platform framework for working with schematized data + pkgver = 7a14f45 + pkgrel = 1 + url = https://github.com/microsoft/bond/ + arch = any + license = MIT + makedepends = cmake + makedepends = boost + makedepends = ghc + makedepends = cabal-install + makedepends = rapidjson-git + provides = bond + source = bond-git::git+https://github.com/microsoft/bond/ + sha1sums = SKIP + +pkgname = bond-git + diff --git a/aur/bond-git/PKGBUILD b/aur/bond-git/PKGBUILD new file mode 100644 index 0000000..a918889 --- /dev/null +++ b/aur/bond-git/PKGBUILD @@ -0,0 +1,39 @@ +# Maintainer: Yuval Adam <yuval at y3xz dot com> PGP-Key: 271386AA2EB7672F + +pkgname=bond-git +pkgver=7a14f45 +pkgrel=1 +pkgdesc="A cross-platform framework for working with schematized data" +arch=('any') +url="https://github.com/microsoft/bond/" +license=(MIT) +depends=('') +makedepends=('cmake' 'boost' 'ghc' 'cabal-install' 'rapidjson-git') +provides=('bond') +source=("$pkgname::git+$url") +sha1sums=('SKIP') + +pkgver() { + cd "$pkgname" + echo $(git describe --always | sed 's/-/./g') +} + +build() { + cd "$pkgname" + + # update cabal before we start + cabal update + + mkdir build + cd build + cmake -DCMAKE_INSTALL_PREFIX=/usr .. + make +} + +package() { + cd "$pkgname" + cd build + make DESTDIR=${pkgdir} install +} + +# vim:set ts=2 sw=2 et: diff --git a/aur/coreclr-git/.SRCINFO b/aur/coreclr-git/.SRCINFO new file mode 100644 index 0000000..b932123 --- /dev/null +++ b/aur/coreclr-git/.SRCINFO @@ -0,0 +1,22 @@ +pkgbase = coreclr-git + pkgdesc = The .NET Core Runtime + pkgver = 32b981a + pkgrel = 1 + url = https://github.com/dotnet/coreclr + arch = x86_64 + license = MIT + makedepends = git + makedepends = cmake + makedepends = clang35 + makedepends = llvm35 + depends = icu + depends = lldb + depends = libunwind + depends = lttng-ust + optdepends = mono: for building mscorlib.dll + provides = coreclr + source = git+https://github.com/dotnet/coreclr + sha1sums = SKIP + +pkgname = coreclr-git + diff --git a/aur/coreclr-git/PKGBUILD b/aur/coreclr-git/PKGBUILD new file mode 100644 index 0000000..0dac5d7 --- /dev/null +++ b/aur/coreclr-git/PKGBUILD @@ -0,0 +1,35 @@ +# Maintainer: Yuval Adam <yuval at y3xz dot com> PGP-Key: 271386AA2EB7672F + +pkgname=coreclr-git +pkgver=32b981a +pkgrel=1 +pkgdesc="The .NET Core Runtime" +arch=('x86_64') +url="https://github.com/dotnet/coreclr" +license=(MIT) +depends=('icu' 'lldb' 'libunwind' 'lttng-ust') +makedepends=('git' 'cmake' 'clang35' 'llvm35') +optdepends=('mono: for building mscorlib.dll') +provides=('coreclr') +source=('git+https://github.com/dotnet/coreclr') +sha1sums=('SKIP') +_gitname=coreclr + +pkgver() { + cd $_gitname + echo $(git describe --always | sed 's/-/./g') +} + +build() { + cd $_gitname + ./build.sh +} + +package() { + install -Dm755 ${srcdir}/${_gitname}/bin/Product/Linux.x64.Debug/corerun ${pkgdir}/usr/bin/corerun + install -d ${pkgdir}/usr/{lib,include} + install ${srcdir}/${_gitname}/bin/Product/Linux.x64.Debug/*.so ${pkgdir}/usr/lib/ + install ${srcdir}/${_gitname}/bin/Product/Linux.x64.Debug/inc/*.h ${pkgdir}/usr/include/ +} + +# vim:set ts=2 sw=2 et: diff --git a/aur/disque-git/.SRCINFO b/aur/disque-git/.SRCINFO new file mode 100644 index 0000000..0c58e95 --- /dev/null +++ b/aur/disque-git/.SRCINFO @@ -0,0 +1,13 @@ +pkgbase = disque-git + pkgdesc = Distributed message broker + pkgver = d01f47d + pkgrel = 2 + url = https://github.com/antirez/disque + arch = any + license = MIT + provides = disque + source = disque-git::git+https://github.com/antirez/disque + sha1sums = SKIP + +pkgname = disque-git + diff --git a/aur/disque-git/PKGBUILD b/aur/disque-git/PKGBUILD new file mode 100644 index 0000000..7c7ef30 --- /dev/null +++ b/aur/disque-git/PKGBUILD @@ -0,0 +1,31 @@ +# Maintainer: Yuval Adam <yuval at y3xz dot com> PGP-Key: 271386AA2EB7672F + +pkgname=disque-git +pkgver=d01f47d +pkgrel=2 +pkgdesc="Distributed message broker" +arch=('any') +url="https://github.com/antirez/disque" +license=(MIT) +provides=('disque') +source=("$pkgname::git+$url") +sha1sums=('SKIP') + +pkgver() { + cd "$pkgname" + echo $(git describe --always | sed 's/-/./g') +} + +build() { + cd "$pkgname" + make +} + +package() { + cd "$pkgname" + install -Dm644 ${srcdir}/${pkgname}/disque.conf ${pkgdir}/etc/disque/disque.conf + install -Dm755 ${srcdir}/${pkgname}/src/disque ${pkgdir}/usr/bin/disque + install -Dm755 ${srcdir}/${pkgname}/src/disque-server ${pkgdir}/usr/bin/disque-server +} + +# vim:set ts=2 sw=2 et: |
