Skip to content

Instantly share code, notes, and snippets.

@bokunodev
Created April 26, 2021 13:09
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save bokunodev/0b2c7feac78dd0200001ce021c6442a4 to your computer and use it in GitHub Desktop.
Save bokunodev/0b2c7feac78dd0200001ce021c6442a4 to your computer and use it in GitHub Desktop.
Makepkg default flags in a makefile
all: help
build:
makepkg --ignorearch \
--clean \
--force \
--log \
--rmdeps \
--syncdeps \
--nosign \
--skipchecksums \
--skipinteg \
--skippgpcheck \
--asdeps \
--needed
repack:
makepkg --repackage
help:
@echo -e '\t repack repackage only, without build'
@echo -e '\t build build package (default)'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment