You've already forked mint-backgrounds-tessa-pkg
Compare commits
24 Commits
6c5b5056d3
...
master
Author | SHA1 | Date | |
---|---|---|---|
fdbc419e31
|
|||
303037b0ca
|
|||
0fa87f6937
|
|||
8e9185a37c
|
|||
1918ee432b
|
|||
2d993bf8c3
|
|||
4fa2b4e4a9
|
|||
b58d78e513
|
|||
8d1fe37263
|
|||
951b65c96a
|
|||
b7544231e3
|
|||
d748703d41 | |||
360be9d9aa
|
|||
d953a541f9 | |||
441eebee75
|
|||
bbf0375118 | |||
b2cea774ef | |||
c6a73c5f1d | |||
04e779b0dd | |||
2fb99d5185 | |||
9993892158 | |||
8b399cc2ee | |||
af6e763d20 | |||
f9ac3641f1 |
2
.SRCINFO
2
.SRCINFO
@ -1,7 +1,7 @@
|
||||
pkgbase = mint-backgrounds-tessa
|
||||
pkgdesc = The backgrounds included in Linux Mint 19.1 Tessa
|
||||
pkgver = 1.1
|
||||
pkgrel = 12
|
||||
pkgrel = 3
|
||||
url = http://packages.linuxmint.com/pool/main/m/mint-backgrounds-tessa
|
||||
arch = any
|
||||
license = GPL3
|
||||
|
12
.editorconfig
Normal file
12
.editorconfig
Normal file
@ -0,0 +1,12 @@
|
||||
# EditorConfig is awesome: https://EditorConfig.org
|
||||
|
||||
# top-most EditorConfig file
|
||||
root = true
|
||||
|
||||
[*]
|
||||
indent_style = space
|
||||
indent_size = 2
|
||||
end_of_line = lf
|
||||
charset = utf-8
|
||||
trim_trailing_whitespace = true
|
||||
insert_final_newline = false
|
5
.gitignore
vendored
Normal file
5
.gitignore
vendored
Normal file
@ -0,0 +1,5 @@
|
||||
pkg
|
||||
src
|
||||
*tar.gz
|
||||
*tar.zst
|
||||
*tar.zst.sig
|
8
PKGBUILD
8
PKGBUILD
@ -3,7 +3,7 @@
|
||||
|
||||
pkgname=mint-backgrounds-tessa
|
||||
pkgver=1.1
|
||||
pkgrel=12
|
||||
pkgrel=3
|
||||
pkgdesc="The backgrounds included in Linux Mint 19.1 Tessa"
|
||||
license=('GPL3')
|
||||
arch=('any')
|
||||
@ -12,9 +12,9 @@ source=("$url/mint-backgrounds-tessa_$pkgver.tar.gz")
|
||||
md5sums=("b5b4dd9ca3f017408a98f3b5bd382235")
|
||||
package() {
|
||||
mkdir -p $pkgdir/usr/share/backgrounds/linuxmint-tessa
|
||||
cp -a $srcdir/$pkgname/backgrounds/linuxmint-tessa $pkgdir/usr/share/backgrounds/
|
||||
cp -a $srcdir/$pkgname-$pkgver/backgrounds/linuxmint-tessa $pkgdir/usr/share/backgrounds/
|
||||
mkdir -p $pkgdir/usr/share/{cinnamon-background-properties,gnome-background-properties}
|
||||
cp -a $srcdir/$pkgname/cinnamon-background-properties/* $pkgdir/usr/share/cinnamon-background-properties/
|
||||
cp -a $srcdir/$pkgname/gnome-background-properties/* $pkgdir/usr/share/gnome-background-properties
|
||||
cp -a $srcdir/$pkgname-$pkgver/cinnamon-background-properties/* $pkgdir/usr/share/cinnamon-background-properties/
|
||||
cp -a $srcdir/$pkgname-$pkgver/gnome-background-properties/* $pkgdir/usr/share/gnome-background-properties
|
||||
}
|
||||
|
||||
|
61
README.md
Normal file
61
README.md
Normal file
@ -0,0 +1,61 @@
|
||||
# mint-backgrounds-tessa
|
||||
|
||||

|
||||

|
||||
|
||||
This repository contains build files to build the Arch Linux package `mint-backgrounds-tessa`. Instead of building the
|
||||
package yourself, it can also be obtained from the following private repository. More detailed are described
|
||||
[here](#obtaining-pre-built-packages-from-a-repository).
|
||||
|
||||
## Build
|
||||
|
||||
Clone this repository and use `makepkg` to build the package by yourself. For example:
|
||||
|
||||
```bash
|
||||
git clone https://aur.archlinux.org/mint-backgrounds-tessa.git
|
||||
cd mint-backgrounds-tessa
|
||||
makepkg
|
||||
```
|
||||
|
||||
## Yay
|
||||
|
||||
The build files are also available via AUR and can be installed via an AUR helper like `yay`.
|
||||
|
||||
```bash
|
||||
yay --sync --aur mint-backgrounds-tessa
|
||||
```
|
||||
|
||||
## Obtaining pre-built packages from a repository
|
||||
|
||||
Instead of building the packages locally, it is also possible to configure an additional repository to install the
|
||||
package directly via `pacman`. The following commands are used to create the repository, configure the GPG key to verify
|
||||
the packages and install the package:
|
||||
|
||||
```bash
|
||||
# Create drop-in directory
|
||||
sudo mkdir --parents /etc/pacman.d/repos
|
||||
|
||||
# Create configuration of the repository 'volker.raschek'
|
||||
sudo tee /etc/pacman.d/repos/volker.raschek.conf > /dev/null <<'EOF'
|
||||
[volker.raschek]
|
||||
SigLevel = PackageRequired TrustedOnly
|
||||
Include = /etc/pacman.d/repos/volker.raschek.list
|
||||
EOF
|
||||
|
||||
# Create mirror list of the repository 'volker.raschek'
|
||||
sudo tee /etc/pacman.d/repos/volker.raschek.list > /dev/null <<'EOF'
|
||||
Server = https://aur.cryptic.systems/$repo/$arch
|
||||
EOF
|
||||
|
||||
# Import gpg key of the repository 'volker.raschek'
|
||||
sudo pacman-key --keyserver hkps://keys.openpgp.org --recv-keys 9B146D11A9ED6CA7E279EB1A852BCC170D81A982
|
||||
|
||||
# Extend existing pacman configuration of the repository 'volker.raschek'
|
||||
sudo echo "Include = /etc/pacman.d/repos/*.conf" >> /etc/pacman.conf
|
||||
|
||||
# Update pacman cache
|
||||
sudo pacman --sync --refresh
|
||||
|
||||
# Install the package and receive updates directly via pacman :)
|
||||
sudo pacman --sync mint-backgrounds-tessa
|
||||
```
|
Reference in New Issue
Block a user