mirror of
https://github.com/archlinux/aur.git
synced 2026-03-04 22:12:14 +01:00
commit
52d007c388
3 changed files with 56 additions and 0 deletions
14
.SRCINFO
Normal file
14
.SRCINFO
Normal file
|
|
@ -0,0 +1,14 @@
|
|||
pkgbase = memoir-git
|
||||
pkgdesc = minimal cli diary
|
||||
pkgver = r7.2d73a99
|
||||
pkgrel = 1
|
||||
url = https://github.com/gostrc/memoir
|
||||
arch = any
|
||||
license = unknown
|
||||
makedepends = git
|
||||
depends = python
|
||||
source = git://github.com/gostrc/memoir.git
|
||||
md5sums = SKIP
|
||||
|
||||
pkgname = memoir-git
|
||||
|
||||
15
.gitignore
vendored
Normal file
15
.gitignore
vendored
Normal file
|
|
@ -0,0 +1,15 @@
|
|||
*/src
|
||||
*/pkg
|
||||
*.gz
|
||||
*.xz
|
||||
*.bz2
|
||||
*.zip
|
||||
*.part
|
||||
*.sig
|
||||
*.sign
|
||||
*.txt
|
||||
*.log
|
||||
*.scm
|
||||
*/memoir
|
||||
*/*.pkg
|
||||
*/*.asc
|
||||
27
PKGBUILD
Normal file
27
PKGBUILD
Normal file
|
|
@ -0,0 +1,27 @@
|
|||
# Contributor: Thomas Dziedzic < gostrc at gmail >
|
||||
|
||||
_pkgname=memoir
|
||||
pkgname=memoir-git
|
||||
pkgver=r7.2d73a99
|
||||
pkgrel=1
|
||||
pkgdesc='minimal cli diary'
|
||||
arch=('any')
|
||||
url='https://github.com/gostrc/memoir'
|
||||
license=('unknown')
|
||||
depends=('python')
|
||||
makedepends=('git')
|
||||
source=('git://github.com/gostrc/memoir.git')
|
||||
md5sums=('SKIP')
|
||||
|
||||
|
||||
pkgver() {
|
||||
cd $_pkgname
|
||||
printf "r%s.%s" "$(git rev-list --count HEAD)" "$(git rev-parse --short HEAD)"
|
||||
}
|
||||
|
||||
package() {
|
||||
cd ${_pkgname}
|
||||
|
||||
install -d ${pkgdir}/usr/bin
|
||||
install m ${pkgdir}/usr/bin
|
||||
}
|
||||
Loading…
Add table
Reference in a new issue