Update
This commit is contained in:
parent
3045bf14ac
commit
cd805782dd
1
.gitignore
vendored
1
.gitignore
vendored
@ -10,3 +10,4 @@
|
|||||||
*.sig
|
*.sig
|
||||||
*.deb
|
*.deb
|
||||||
*.gz
|
*.gz
|
||||||
|
*.zip
|
||||||
|
31
LICENSE
31
LICENSE
@ -1,13 +1,26 @@
|
|||||||
DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE
|
GLWTS(Good Luck With That Shit) Public License
|
||||||
Version 3, JUNE 2022
|
Copyright (c) Every-fucking-one, except the Author
|
||||||
|
|
||||||
Copyright (C) 2022 Xiufeng Guo <i@m.ac>
|
Everyone is permitted to copy, distribute, modify, merge, sell, publish,
|
||||||
|
sublicense or whatever the fuck they want with this software but at their
|
||||||
|
OWN RISK.
|
||||||
|
|
||||||
Everyone is permitted to copy and distribute verbatim or modified
|
Preamble
|
||||||
copies of this license document, and changing it is allowed as long
|
|
||||||
as the name is changed.
|
|
||||||
|
|
||||||
DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE
|
The author has absolutely no fucking clue what the code in this project
|
||||||
TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION
|
does. It might just fucking work or not, there is no third option.
|
||||||
|
|
||||||
0. You just DO WHAT THE FUCK YOU WANT TO.
|
|
||||||
|
GOOD LUCK WITH THAT SHIT PUBLIC LICENSE
|
||||||
|
TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION, AND MODIFICATION
|
||||||
|
|
||||||
|
0. You just DO WHATEVER THE FUCK YOU WANT TO as long as you NEVER LEAVE
|
||||||
|
A FUCKING TRACE TO TRACK THE AUTHOR of the original product to blame for
|
||||||
|
or held responsible.
|
||||||
|
|
||||||
|
IN NO EVENT SHALL THE AUTHORS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||||
|
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
|
||||||
|
FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
|
||||||
|
DEALINGS IN THE SOFTWARE.
|
||||||
|
|
||||||
|
Good luck and Godspeed.
|
||||||
|
@ -80,10 +80,11 @@ Here is the list:
|
|||||||
| synergy1-bin | https://aur.archlinux.org/cgit/aur.git/tree/PKGBUILD?h=synergy1-bin | https://git.m.ac/showfom/archlinux/src/branch/main/repo/synergy1-bin/PKGBUILD | [GitHub](https://github.com/symless/synergy-core) |
|
| synergy1-bin | https://aur.archlinux.org/cgit/aur.git/tree/PKGBUILD?h=synergy1-bin | https://git.m.ac/showfom/archlinux/src/branch/main/repo/synergy1-bin/PKGBUILD | [GitHub](https://github.com/symless/synergy-core) |
|
||||||
| nali-go-bin | https://aur.archlinux.org/cgit/aur.git/tree/PKGBUILD?h=nali-go-bin | https://git.m.ac/showfom/archlinux/src/branch/main/repo/nali-go-bin/PKGBUILD | [GitHub](https://github.com/zu1k/nali) |
|
| nali-go-bin | https://aur.archlinux.org/cgit/aur.git/tree/PKGBUILD?h=nali-go-bin | https://git.m.ac/showfom/archlinux/src/branch/main/repo/nali-go-bin/PKGBUILD | [GitHub](https://github.com/zu1k/nali) |
|
||||||
| vanity_gpg | https://aur.archlinux.org/cgit/aur.git/tree/PKGBUILD?h=vanity_gpg | https://git.m.ac/showfom/archlinux/src/branch/main/repo/vanity_gpg/PKGBUILD | [GitHub](https://github.com/RedL0tus/VanityGPG) |
|
| vanity_gpg | https://aur.archlinux.org/cgit/aur.git/tree/PKGBUILD?h=vanity_gpg | https://git.m.ac/showfom/archlinux/src/branch/main/repo/vanity_gpg/PKGBUILD | [GitHub](https://github.com/RedL0tus/VanityGPG) |
|
||||||
|
| otf-openmoji | https://aur.archlinux.org/cgit/aur.git/tree/PKGBUILD?h=otf-openmoji | https://git.m.ac/showfom/archlinux/src/branch/main/repo/otf-openmoji/PKGBUILD | [GitHub](https://github.com/RedL0tus/VanityGPG) |
|
||||||
|
|
||||||
## License
|
## License
|
||||||
|
|
||||||
WTFPL
|
[GLWTPLS](https://git.m.ac/showfom/archlinux/src/branch/main/LICENSE)
|
||||||
|
|
||||||
## Terms
|
## Terms
|
||||||
|
|
||||||
|
20
repo/otf-openmoji/PKGBUILD
Normal file
20
repo/otf-openmoji/PKGBUILD
Normal file
@ -0,0 +1,20 @@
|
|||||||
|
# Maintainer: Andrea Scarpino <andrea@archlinux.org>
|
||||||
|
# Contributor: Gimo <self@gimo.me>
|
||||||
|
# Contributor: Xiufeng Guo <i@m.ac>
|
||||||
|
|
||||||
|
pkgname=otf-openmoji
|
||||||
|
pkgver=14.0
|
||||||
|
pkgrel=1
|
||||||
|
pkgdesc="Open source emojis for designers, developers and everyone else!"
|
||||||
|
arch=(any)
|
||||||
|
url="https://openmoji.org/"
|
||||||
|
license=(CCPL:by-sa)
|
||||||
|
depends=(fontconfig)
|
||||||
|
source=($pkgname-$pkgver.zip::"https://storage.m.ac/mirrors/github-release/hfg-gmuend/openmoji/OpenMoji%20$pkgver/openmoji-font.zip")
|
||||||
|
sha256sums=('7e8d72de29216cd7b0f889dd82982baf2f2f11842ab8018ecac88bb43a109585')
|
||||||
|
|
||||||
|
package() {
|
||||||
|
mkdir -p "$pkgdir/usr/share/fonts/openmoji"
|
||||||
|
install -m644 OpenMoji-Black.ttf "$pkgdir/usr/share/fonts/openmoji"
|
||||||
|
install -m644 OpenMoji-Color.ttf "$pkgdir/usr/share/fonts/openmoji"
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user