summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorEdmund2023-10-17 16:56:53 +0200
committerEdmund2023-10-17 16:56:53 +0200
commitedaad3c2456a30817c9f42caab4c31bfda48547b (patch)
tree20c74e306d318e1c39ce188bdaea84bd3135328f
parent72624df51b67de68e36d5660a50f6cafbe6a010d (diff)
downloadaur-edaad3c2456a30817c9f42caab4c31bfda48547b.tar.gz
Added clarification to libcs50.install file
-rw-r--r--.SRCINFO2
-rw-r--r--PKGBUILD2
-rw-r--r--libcs50.install1
3 files changed, 3 insertions, 2 deletions
diff --git a/.SRCINFO b/.SRCINFO
index 85d962e91945..73411ffc92b6 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -1,7 +1,7 @@
pkgbase = libcs50
pkgdesc = CS50 Library for C
pkgver = 11.0.2
- pkgrel = 1
+ pkgrel = 2
url = https://github.com/cs50/libcs50
install = libcs50.install
arch = i686
diff --git a/PKGBUILD b/PKGBUILD
index 939f990b0d31..69bd132deb0b 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -6,7 +6,7 @@
pkgname='libcs50'
pkgver=11.0.2
-pkgrel=1
+pkgrel=2
pkgdesc="CS50 Library for C"
arch=('i686' 'x86_64')
url='https://github.com/cs50/libcs50'
diff --git a/libcs50.install b/libcs50.install
index e2c4ebb13c09..8513efa8fdda 100644
--- a/libcs50.install
+++ b/libcs50.install
@@ -3,3 +3,4 @@ post_install() {
echo -e '\nInstead of using a makefile, you can add the following alias to your ~/.bashrc:'
echo -e " "alias make50="'"'make CC=clang CFLAGS="-fsanitize=signed-integer-overflow -fsanitize=undefined -ggdb3 -O0 -std=c11 -Wall -Werror -Wextra -Wno-sign-compare -Wno-unused-parameter -Wno-unused-variable -Wshadow" LDLIBS="-lcrypt -lcs50 -lm"'"'"'\n'
}
+ echo -e '\nThis would require having `clang` installed.'