Compare commits
No commits in common. "d17ed6c094d29de3261f112a333d2909ebb9ae7c" and "15a4db25828231c89d3e5b55c81c9f248c1845cf" have entirely different histories.
d17ed6c094
...
15a4db2582
@ -1,65 +0,0 @@
|
|||||||
#
|
|
||||||
# neofetch
|
|
||||||
#
|
|
||||||
|
|
||||||
# Package metadata
|
|
||||||
PACKAGE_NAME="neofetch"
|
|
||||||
PACKAGE_VER="7.1.0"
|
|
||||||
PACKAGE_DESC="A command-line system information tool written in bash 3.2+"
|
|
||||||
MAINTAINER="liamwaldron@everestlinux.org"
|
|
||||||
LICENSE="MIT"
|
|
||||||
ARCH="x86"
|
|
||||||
INCLUDED_FILES=("/usr/bin/neofetch" "/usr/share/man/man1/neofetch.1")
|
|
||||||
|
|
||||||
# Integrity checking
|
|
||||||
SHA256SUMS="8e90cc7d988fbbfca08e138436a0a88167f955a3b7cd5ec074745efd606d6a6d"
|
|
||||||
|
|
||||||
# Dependency information
|
|
||||||
DEPENDS=("bash")
|
|
||||||
CONFLICTS=("")
|
|
||||||
|
|
||||||
# Source information
|
|
||||||
PACKAGE_SRC="https://githib.com/dylanaraps/neofetch"
|
|
||||||
SOURCES=("neofetch")
|
|
||||||
|
|
||||||
# Installation
|
|
||||||
getsource() {
|
|
||||||
git clone $PACKAGE_SRC
|
|
||||||
}
|
|
||||||
|
|
||||||
buildpkg() {
|
|
||||||
cd ${SOURCES[1]}
|
|
||||||
}
|
|
||||||
|
|
||||||
installpkg() {
|
|
||||||
make install
|
|
||||||
}
|
|
||||||
|
|
||||||
installpkg_system() {
|
|
||||||
printf "${red}[${error}]${reset} Package 'neofetch' does not support merging into the system index.\n"
|
|
||||||
exit 1
|
|
||||||
}
|
|
||||||
|
|
||||||
removepkg() {
|
|
||||||
rm /usr/bin/neofetch
|
|
||||||
rm -rf /usr/share/man/man1/neofetch.1*
|
|
||||||
}
|
|
||||||
|
|
||||||
removepkg_system() {
|
|
||||||
printf "${red}[${error}]${reset} Package 'neofetch' does not support merging into the system index.\n"
|
|
||||||
exit 1
|
|
||||||
}
|
|
||||||
|
|
||||||
updatepkg() {
|
|
||||||
buildpkg "$@"
|
|
||||||
installpkg "$@"
|
|
||||||
}
|
|
||||||
|
|
||||||
updatepkg_system() {
|
|
||||||
printf "${red}[${error}]${reset} Package 'neofetch' does not support merging into the system index.\n"
|
|
||||||
exit 1
|
|
||||||
}
|
|
||||||
|
|
||||||
#
|
|
||||||
# end neofetch
|
|
||||||
#
|
|
Loading…
Reference in New Issue
Block a user