diff --git a/tlsl/Makefile b/tlsl/Makefile index 84297f6..415b907 100644 --- a/tlsl/Makefile +++ b/tlsl/Makefile @@ -19,26 +19,26 @@ include $(INCLUDE_DIR)/meson.mk MESON_ARGS += -Dexamples=false define Package/$(PKG_NAME) - SECTION := libs - CATEGORY := Utilities - CATEGORY := Libraries - TITLE := Tom's little standard library + SECTION := libs + CATEGORY := Utilities + CATEGORY := Libraries + TITLE := Tom's little standard library endef define Package/$(PKG_NAME)/description - C utilities + C utilities endef define Build/InstallDev - $(INSTALL_DIR) $(1)/usr/include/tlsl - $(CP) $(PKG_BUILD_DIR)/include/public/*.h $(1)/usr/include/tlsl/ - $(INSTALL_DIR) $(1)/usr/lib - $(CP) $(MESON_BUILD_DIR)/*.so $(1)/usr/lib/ + $(INSTALL_DIR) $(1)/usr/include/tlsl + $(CP) $(PKG_BUILD_DIR)/include/public/*.h $(1)/usr/include/tlsl/ + $(INSTALL_DIR) $(1)/usr/lib + $(CP) $(MESON_BUILD_DIR)/*.so $(1)/usr/lib/ endef define Package/$(PKG_NAME)/install - $(INSTALL_DIR) $(1)/usr/lib - $(CP) $(MESON_BUILD_DIR)/*.so $(1)/usr/lib/ + $(INSTALL_DIR) $(1)/usr/lib + $(CP) $(MESON_BUILD_DIR)/*.so $(1)/usr/lib/ endef $(eval $(call BuildPackage,$(PKG_NAME)))