forked from cromer/pamac-classic
customized builds
This commit is contained in:
19
data/config/CMakeLists.txt
Normal file
19
data/config/CMakeLists.txt
Normal file
@@ -0,0 +1,19 @@
|
||||
### CMakeLists automatically created with AutoVala
|
||||
### Do not edit
|
||||
|
||||
if (NOT(DISABLE_AUR))
|
||||
IF(IS_DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR}/pamac.conf)
|
||||
install(DIRECTORY
|
||||
${CMAKE_CURRENT_SOURCE_DIR}/pamac.conf
|
||||
DESTINATION
|
||||
${CMAKE_INSTALL_SYSCONFDIR}
|
||||
)
|
||||
ELSE()
|
||||
install(FILES
|
||||
${CMAKE_CURRENT_SOURCE_DIR}/pamac.conf
|
||||
DESTINATION
|
||||
${CMAKE_INSTALL_SYSCONFDIR}
|
||||
)
|
||||
ENDIF()
|
||||
|
||||
endif ()
|
19
data/config/noaur/CMakeLists.txt
Normal file
19
data/config/noaur/CMakeLists.txt
Normal file
@@ -0,0 +1,19 @@
|
||||
### CMakeLists automatically created with AutoVala
|
||||
### Do not edit
|
||||
|
||||
if (DISABLE_AUR)
|
||||
IF(IS_DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR}/pamac.conf)
|
||||
install(DIRECTORY
|
||||
${CMAKE_CURRENT_SOURCE_DIR}/pamac.conf
|
||||
DESTINATION
|
||||
${CMAKE_INSTALL_SYSCONFDIR}
|
||||
)
|
||||
ELSE()
|
||||
install(FILES
|
||||
${CMAKE_CURRENT_SOURCE_DIR}/pamac.conf
|
||||
DESTINATION
|
||||
${CMAKE_INSTALL_SYSCONFDIR}
|
||||
)
|
||||
ENDIF()
|
||||
|
||||
endif ()
|
11
data/config/noaur/pamac.conf
Normal file
11
data/config/noaur/pamac.conf
Normal file
@@ -0,0 +1,11 @@
|
||||
### Pamac configuration file
|
||||
|
||||
## When removing a package, also remove those dependencies
|
||||
## that are not required by other packages (recurse option):
|
||||
#RemoveUnrequiredDeps
|
||||
|
||||
## How often to check for updates, value in hours (0 to disable):
|
||||
RefreshPeriod = 6
|
||||
|
||||
## When there are no updates available, hide the tray icon:
|
||||
#NoUpdateHideIcon
|
Reference in New Issue
Block a user