Search Criteria
Package Details: unmakeself 1.1-0
Package Actions
| Git Clone URL: | https://aur.archlinux.org/unmakeself.git (read-only, click to copy) |
|---|---|
| Package Base: | unmakeself |
| Description: | Makeself archive extractor |
| Upstream URL: | https://www.freshports.org/archivers/unmakeself |
| Licenses: | BSD |
| Submitter: | codyps |
| Maintainer: | codyps |
| Last Packager: | codyps |
| Votes: | 2 |
| Popularity: | 0.000089 |
| First Submitted: | 2018-08-25 02:47 (UTC) |
| Last Updated: | 2023-06-22 23:20 (UTC) |
Latest Comments
dreieck commented on 2023-09-14 16:21 (UTC) (edited on 2023-09-14 16:22 (UTC) by dreieck)
Please honour
$CFLAGS:Change
to
(
-Wall -Wextrais something the user can decide if it is wanted, by setting it in$CFLAGSin somemakepkg.conf.)Regards!
dreieck commented on 2023-09-14 16:14 (UTC) (edited on 2023-09-14 16:20 (UTC) by dreieck)
Ahoj,
build fails for me with
cp: cannot stat '../config.h': No such file or directoryIt turns out that you forgot to inclide the
config.hin thesource-array, and since I use$BUILDDIRand$SRCDESTin/etc/makepkg.conf, the source download directory, the build directory and thePKGBUILD-and-co clone directories reside in different places.You must include every file that is needed for package building in the
sourcedirectory, and you must not access files outside "${srcdir}" inbuild()and outside${srcdir}or${pkgdir}inpackage(),so the
../which you use in
build()is not allowed and should be replaced with"${srcdir}"(after addingconfig.hto thesourcearray).Anyway, you should remove the complete
cp [...]config.h .-line, since after you listconfig.hin thesource-array it will be automatically in the same place asunmakeself.c.Please fix.
Regards!, and thanks for maintaining.
mJolimaitre commented on 2022-08-17 16:00 (UTC)
broken upstream