summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorgit user2024-01-30 14:53:01 +0100
committergit user2024-01-30 14:53:01 +0100
commite4ecc3d2c6fa384302b09c0c217f64c7fcb9b661 (patch)
treed7052b163a3b667a23068cdda643ea07e9d7ec88
parent5305607e8ee12702e4d1c47cfc844f33cbf4c6b4 (diff)
downloadaur-e4ecc3d2c6fa384302b09c0c217f64c7fcb9b661.tar.gz
Added missing `export` before variable `PKG_CONFIG_PATH`.
-rw-r--r--PKGBUILD4
1 files changed, 2 insertions, 2 deletions
diff --git a/PKGBUILD b/PKGBUILD
index e53f43cbd010..6cfd5459cf16 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -168,8 +168,8 @@ build() {
# * [2023-06-24] libspotify does no longer exist & also does no longer work, so disable it (`libspotify` would be the needed dependency), see https://aur.archlinux.org/packages/tizonia-all-git#comment-921052.
# * [2023-07-31] Google Music service is dead, but `python-gmusicapi` is still needed by `/usr/lib/python3.11/site-packages/tizgmusicproxy.py`, see https://aur.archlinux.org/packages/tizonia-all-git#comment-927188 and follow up.
# * [2023-08-01] Building tests fails with `clients/youtube/libtizyoutube/tests/check_tizyoutube.c:121:12: error: too few arguments to function ‘tiz_youtube_init’`, see https://github.com/tizonia/tizonia-openmax-il/issues/799.
- export SAMUFLAGS="-j1" # Eats a lot of ram, so restrict to one build job at a time.
- PKG_CONFIG_PATH=/usr/lib/taglib1/lib/pkgconfig # Also search for taglib1 pkgconfig file.
+ export SAMUFLAGS="-j1" # Eats a lot of ram, so restrict to one build job at a time.
+ export PKG_CONFIG_PATH=/usr/lib/taglib1/lib/pkgconfig # Also search for taglib1 pkgconfig file.
meson setup --prefix=/usr --buildtype=plain \
-Dplayer=true \
-Dlibspotify=false \