Updating PKGBUILD, README.md, and license. Update rsync to use fixed flag

This commit is contained in:
DarkFeather 2020-06-15 00:17:38 -05:00
parent 8339ad6506
commit ce2e2d3863
Signed by: DarkFeather
GPG Key ID: 1CC1E3F4ED06F296
6 changed files with 31 additions and 23 deletions

1
.gitignore vendored
View File

@ -1,2 +1,3 @@
pkg/ pkg/
src/ src/
*.tar.xz

14
LICENSE
View File

@ -16,12 +16,16 @@
ANINIX ADDENDUM ANINIX ADDENDUM
Trademark Pending 2017 (https://aninix.net/irc/) Trademark 2017 (https://aninix.net/)
The "AniNIX" name and |> logo is trademark-pending as of 2017. All The "AniNIX" name and |> logo are trademarked as of 2017/11/21.
AniNIX materials can be reproduced and re-used, though you must AniNIX materials may be reproduced and re-used (though you must
contact the admins of the network to get written permission to use contact the admins of the network to get written permission to use
the AniNIX name. the AniNIX name or logo) so long as such reproduction or re-use
does not inhibit the original AniNIX use of the same.
Attribution is appreciated for other materials but not legally Attribution is appreciated for other materials but not legally
required or necessary. required or necessary.
"AniNIX" trademark serial: 87177883
|> Logo trademark serial: 87177887

View File

@ -6,7 +6,7 @@ compile:
install: compile install: compile
mkdir -p ${installdir} mkdir -p ${installdir}
for target in ${targets}; do rsync -avzl "$$target" ${installdir}; done for target in ${targets}; do rsync -avzzl "$$target" ${installdir}; done
make checkperm make checkperm
clean: clean:

View File

@ -1,23 +1,22 @@
# Maintainer: Shikoba Kage <darkfeather@aninix.net> depends=('bash>=4.4')
pkgname=uniglot
pkgver=0.1.e7c96f9
pkgver() {
printf "0.1.""$(git rev-parse --short HEAD)"
}
pkgrel=1
epoch=
pkgdesc="AniNIX::Uniglot \\\\ Shared code libraries that all the AniNIX projects should use -- this should reduce error and code duplication"
arch=("x86_64")
url="https://aninix.net/foundation/Uniglot"
license=('custom')
groups=()
depends=('mono>=5.0.0' 'curl' 'grep' 'bash>=4.4' 'git>=2.13')
makedepends=('make>=4.2') makedepends=('make>=4.2')
checkdepends=() checkdepends=()
optdepends=() optdepends=()
provides=('uniglot') pkgname="$(git config remote.origin.url | rev | cut -f 1 -d '/' | rev | sed 's/.git$//')"
pkgver="$(git describe --tag --abbrev=0)"."$(git rev-parse --short HEAD)"
pkgrel=1
pkgrel() {
echo $(( `git log "$(git describe --tag --abbrev=0)"..HEAD | grep -c commit` + 1 ))
}
epoch="$(git log | grep -c commit)"
pkgdesc="$(head -n 1 README.md)"
arch=("x86_64")
url="$(git config remote.origin.url | sed 's/.git$//')"
license=('custom')
groups=()
provides=("${pkgname}")
conflicts=() conflicts=()
replaces=() replaces=("${pkgname,,}", "aninix-${pkgname,,}")
backup=() backup=()
options=() options=()
install= install=
@ -36,7 +35,8 @@ build() {
} }
check() { check() {
printf 'quit\n\n' | make -C "${srcdir}/.." test chmod -R u+r ../pkg
make -C .. test
} }
package() { package() {

3
README.md Normal file
View File

@ -0,0 +1,3 @@
This repo holds all our standard functions that all our services should use. We include a folder for each language -- files are broken down by their inclusion method. Please follow our [development best practices](https://foundation.aninix.net/AniNIX/Wiki/src/branch/master/Operation/Development_Best_Practices.md) when contributing.
These functions are not intended to be invoked directly, so the package created from this repo will only provide files on disk.

BIN
Resources/AniNIX.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 7.2 KiB