Created
February 3, 2015 14:11
-
-
Save elieux/9648dedfe580d2962c1a to your computer and use it in GitHub Desktop.
makepkg-find-warning
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
==> Making package: example1 1.0-1 (Tue, Feb 3, 2015 3:09:55 PM) | |
==> Checking runtime dependencies... | |
==> Checking buildtime dependencies... | |
==> Retrieving sources... | |
==> Extracting sources... | |
==> Removing existing $pkgdir/ directory... | |
==> Starting package()... | |
==> Tidying install... | |
-> Purging unwanted files... | |
-> Removing libtool files... | |
-> Compressing man and info pages... | |
-> Stripping unneeded symbols from binaries and libraries... | |
find: '*': No such file or directory | |
==> Creating package "example1"... | |
-> Generating .PKGINFO file... | |
-> Generating .MTREE file... | |
-> Compressing package... | |
==> Finished making: example1 1.0-1 (Tue, Feb 3, 2015 3:09:57 PM) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
pkgname=example1 | |
pkgver=1.0 | |
pkgrel=1 | |
arch=(any) | |
package() { | |
echo "example1" > "${pkgdir}/.example1" | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment